Quantcast
Viewing all articles
Browse latest Browse all 82152

ColumnFilter plugin with Radio Buttons

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.

{
    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?

Viewing all articles
Browse latest Browse all 82152

Trending Articles