You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using DataTables "search" input field, node-datatable correctly builds 2 count queries (recordsTotal and recordsFiltered).
However, those 2 queries are always identical.
When using DataTables "search" input field, node-datatable correctly builds 2 count queries (
recordsTotal
andrecordsFiltered
).However, those 2 queries are always identical.
Live demo: https://plnkr.co/edit/PZiw9h5z0AgqSAQIfcXM?p=preview
It seems that the
buildCountStatement
private function always uses the search string through thebuildWherePartial
private function:node-datatable/lib/builder.js
Lines 81 to 87 in ca25ef7
It looks like previously the search string had to be explicitly provided to produce a different result:
node-datatable/lib/builder.js
Lines 77 to 78 in ca25ef7
The text was updated successfully, but these errors were encountered: