SearchPanes
SearchPanes
danchi
Posts: 9Questions: 4Answers: 0
I would like to understand how I can use this https://datatables.net/reference/option/columns.searchPanes.options for custom search, and also to use search for other column which is not custom ?
At the moment I have like this:
$('#example').DataTable({
dom: 'Plfrtip',
columnDefs:[
{
},
{
searchPanes:{
show: true,
dtOpts:{
select:{
style: 'multi'
}
}
},
targets: [2,13]
}
]
});
And I'm searching two columns with displayed data, but I want column 13 to have custom search but with contain text not exact value.
Regards,
Answers
Do you mean a mix of custom and default panels like this: https://datatables.net/extensions/searchpanes/examples/customFiltering/customPane.html ?
Allan