Select extension and button on row
Select extension and button on row
i have buttons in rows. The problem is when i click on a button that is inside a cell , the row is selected and i dont want that. Is there a way to stop propagation....
obj.tbl.on('select', function (e, dt, type, indexes) {
and e parameter is always the row and type also the row...
Thanks for your help
This discussion has been closed.
Answers
I haven't tried using stop propagation but use
select.selector
to filter out columns I don't want selection on.Kevin
Thanks kevin. That is the solution for my problem...