我的这个表有不同的列和搜索框:
对于具有日期值的列,我在搜索框中使用datepicker js。 相反,对于其他列,我使用Datatable的默认搜索框。
我需要通过日期范围或文本来实现搜索的多样化。但搜索方法似乎是独一无二的,不能有不同的实现。
感谢。
我遇到这种情况:
$(.datepicker, this.footer()).on('apply.datepicker',function (ev,picker){
$(this).val(picker.startDate.format(picker.startDate.format('DD/MM/YYYY') + '|' + picker.endDate.format('DD/MM/YYYY');)
if(that.search() !== (picker.startDate.format('DD/MM/YYYY') + '|' + picker.endDate.format('DD/MM/YYYY'))){
that.search(picker.startDate.format('DD/MM/YYYY') + '|' + picker.endDate.format('DD/MM/YYYY')).draw();
}
}
和
$( 'input', this.footer() ).on( 'keyup change', function () {
if ( that.search() !== this.value ) {
that
.search( this.value )
.draw();
}
}