SearchPanes

SearchPanes

danchidanchi Posts: 9Questions: 4Answers: 0
edited June 2022 in Free community support

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

Sign In or Register to comment.