Maybe someone did a search on the table according to the data from the form, like filters that are in the fields of the columns, only rendered in a separate form. Share an example. Or at least some property to dig. Since the search here is http://issues.wenzhixin.net.cn/bootstrap-table/#extensions/toolbar.html

$('#table').bootstrapTable({ data: data, pagination: true, search: true, pageSize: 25 }); 

    1 answer 1

    As far as I remember, you need to add the data-search parameter to the <table> . By default, the search goes through all columns from the table. To exclude a column, you need to add the data-searchable="false" attribute to <th> , which will participate in the search. More details and examples are here if you have not yet seen: http://bootstrap-table.wenzhixin.net.cn/documentation/

    • Here I have a date from form -> to now I'm sitting picking up how to add this filter. The rest is done through filterColumnsPartial - Serge Esmanovich