≡
×
Plus
Manual
Examples
Reference
Download
Blog
Community
Support
Filtering just some columns?
Filtering just some columns?
xuanvu
Posts: 2
Questions: 0
Answers: 0
January 2011
edited January 2011
in
General
I have a table with 5 columns in it, how do I set DataTables so that it'll filter only column 2,3 and 5?
Thank you very much.
Replies
28.vivek.s
Posts: 69
Questions: 0
Answers: 0
January 2011
at a time you can filter globally means all column or one column at a time...you can try some thing like this..
[code]
for(i=0;i<3;i++){
oTable.fnFilter('string',i,true,true,false)
}
[/code]
xuanvu
Posts: 2
Questions: 0
Answers: 0
January 2011
Thank you very much!
This discussion has been closed.
Replies
[code]
for(i=0;i<3;i++){
oTable.fnFilter('string',i,true,true,false)
}
[/code]