Disable row selection for one coloumn index
Disable row selection for one coloumn index
brahmasani
Posts: 11Questions: 2Answers: 0
I have query in the same lines of http://datatables.net/forums/discussion/12859/disable-row-select-event-for-certain-columns. But it is not working for me. Here I want to disable row selection only one column index only. To do that what change I have to make. Can please help me on this.
This discussion has been closed.
Answers
Hi,
"fnPreRowSelect": function ( e, nodes ) {
if ( $(e.currentTarget).hasClass('editable') ) {
return false;
}
return true;
}
In the above i made the column one class has editable, in that case if i click on remaining columns also it is not selecting the row. That is the problem for me.
HI Friends, can any one help
HI,
can any one help me.
Hi Allan,
http://datatables.net/forums/discussion/12859/disable-row-select-event-for-certain-columns for the above URL you provided the solution. Can you help me to also.
Hi ,
Can anyone comment on this.