Filtering just some columns?

Filtering just some columns?

xuanvuxuanvu Posts: 2Questions: 0Answers: 0
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.s28.vivek.s Posts: 69Questions: 0Answers: 0
    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]
  • xuanvuxuanvu Posts: 2Questions: 0Answers: 0
    Thank you very much!
This discussion has been closed.