I'm currently using the flexigrid.js plugin and there is a button that I wish to enable/disable depending on whether a certain cell in the currently selected row is equal to a certain value.
Here is where I am currently at: I thought to add the following to the list of callback functions but am stuck as to what to put in the if statement if that is even a valid check.
'onRowClick': function(row,grid){
var content = $(row).attr('content');
if ($content == 'target'){
}
This callback function does not register though, the 'onDblClick':function...
does work however.