Multiple filters on a single column

Multiple filters on a single column

jbrownjbrown Posts: 2Questions: 0Answers: 0
edited July 2013 in General
Is there a way to have multiple search filters on a single column?
Like, let's say I have a Status Column with values ranging between 'Active', 'Inactive', 'In Progress', 'On Hold', etc.

Then lets say I have checkboxes for each of those options. How would I make it so that if I checked both the 'Active' and 'Inactive' checkboxes, it would filter the table for all rows that have EITHER Active or Inactive in the Status column? I can't seem to find anything in the discussions that talks about doing this all on a single column.

Replies

  • jbrownjbrown Posts: 2Questions: 0Answers: 0
    Okay So I'm guess the answer must be some sort of regex filtering.
  • allanallan Posts: 63,516Questions: 1Answers: 10,472 Site admin
    Yes exactly that - an OR based regex something like 'Active|Inactive|In Progress...' etc. Then use the fnFilter options to enable regex filtering for the column and to disable smart filtering (since that will inject its own regular expression making things very confused!).

    Allan
This discussion has been closed.