i am using aldeed tabular.
Everything works great but when I add a collection helper row, this row is not sortable nor searchable.
New Tabular.Table
definition is:
TabularTables.Cars = new Tabular.Table({
name: "CarsTable",
collection: Cars,
extraFields: ['importDate', 'dateExp', 'dateDeSortie'],
columns: [
{ data: "importDate", title: "Date d'Import",
render: function (data) { if (!data) return ""; return moment(data).format(Global.DATE_FORMAT); } }]
the search function is :
switch (idxCol) {
case 0:
searchTerm = this.searchPatternDateImport()}
var col = $("#carsTable").DataTable().column(idxCol);//1.2.3.4 col.search(searchTerm).draw();
How can i solve this ?