I want to disable a row click for the rows based on the flag value set in the columns
And the rest of the rows should be clickable and also between certain columns
The first two rows that has true should be unclickable. However, the rest of the rows should be clickable from column 1-5.
Here is the link
Extract the
.text()of the last cell in the row and test it:http://jsfiddle.net/mblase75/mEbUG/2/
Alternatively, you can
.filterout the undesirable cells before calling.on("click"):http://jsfiddle.net/mblase75/mEbUG/12/