I need an example of a (Server-side Procssing) SearchPanes implementation of DataTables in mvc core
In the link I have an example of implementing datatables including operations such as Sorting, pagination and search but about the implementation of searchPanes please help me
You could use Juery Ajax to call the MVC action method and load data, then, setting the JQuery DataTable's "searchPanes", "columnDefs" and "dom: 'Pfrtip'," property to implement the SearchPanes function. Sample Code as below:
Code in the Action method:
Code in the View Page:
JQuery script:
The output as below:
More detail information, please check the following links:
Populate jQuery DataTables in Asp.net MVC
JQuery DataTables SearchPanes
DataTables SearchPanes Examples