Quote from
luishp on April 15, 2021, 2:06 pm
Hi @roccocogliano,
Please refer to the original JavaScript library documentation (filterBy):
https://bootstrap-table.com/docs/api/methods/#filterby
neoTable Plugin executes this code when you call neoTableFilter:
$("#"+objId+"neoTable").bootstrapTable('filterBy',filter);
Where objId is your Container name and filter your filter. For example:
$("#Container1neoTable").bootstrapTable('filterBy',{age:10});
Just use that code as a template inside BeginJS and EndJS commands to include additional API options not included in neoTable plugin.
I hope it helps.
Regards.
Hi @roccocogliano,
Please refer to the original JavaScript library documentation (filterBy):
https://bootstrap-table.com/docs/api/methods/#filterby
neoTable Plugin executes this code when you call neoTableFilter:
$("#"+objId+"neoTable").bootstrapTable('filterBy',filter);
Where objId is your Container name and filter your filter. For example:
$("#Container1neoTable").bootstrapTable('filterBy',{age:10});
Just use that code as a template inside BeginJS and EndJS commands to include additional API options not included in neoTable plugin.
I hope it helps.
Regards.
javadrajabihakami and roccocogliano have reacted to this post.
javadrajabihakamiroccocogliano