wildcard char in "neoTableFilter" - Forum

Forum Navigation
You need to log in to create posts and topics.

wildcard char in "neoTableFilter"

Hi,
Is it possible to use wildcard characters (* or ?) in neoTableFilter?

 

 

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

Ok, thank you @luishp.

From a first and quick reading, a wildcard filter does not seem easily feasible.
However I will deepen.

Rocco