Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
327 views
in Technique[技术] by (71.8m points)

javascript - dataTables (jquery) search by two columns

I want to search table by only two columns. E.g. Initial search searches in all columns, I just want to search by two columns. When I use following code:

dataTable.columns([1,7])
    .search("some string")
    .draw(); 

the search text must be present in both columns to be displayed. I want to display it even if it exists in one of the columns. Can anyone help?

Thanks

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

SOLVED

I've changed searching to initial which searches all columns:

dataTable
    .search(this.value)
    .draw();

And set columns which I don't want to be search in initTable:

    "columnDefs": [
    {
        "targets": [2,5],
        "searchable": false
    }]

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...