In my gridview a row will have a couple of different radio buttons in one column. I use this like a status. For example i have a gridview with a test case and one of the columns is called status. In this column for each row you might have statues (New, Review, Complete, Error). A user can pick a different status for each row. This all works great however now i want to filter these down. Lets say i want to see all the rows with the status New selected.
I am currently using ColumnFilter plugin for the rest of my columns and was hoping to use this plugin for this need as well. I started by creating a drop down list of the statuses.
This shows up great however like I expected it won't filter down to only the ones selected.
Any ideas?
I am currently using ColumnFilter plugin for the rest of my columns and was hoping to use this plugin for this need as well. I started by creating a drop down list of the statuses.
{ type: "select", values: [ 'New', 'Review', 'Complete', 'Error'] //Status Column },
This shows up great however like I expected it won't filter down to only the ones selected.
Any ideas?