how to make clickable row with row expand button that is placed in left most side
how to make clickable row with row expand button that is placed in left most side
Umesh132200
Posts: 1Questions: 1Answers: 0
I have table with clickable row, but when i use responsive then conflict row expand button with row click.. i tried $event.stopPropagation to prevent the first left column. how can i achieve....
Thanks in advance
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
Will something like this work for you?
$('#example tbody tr').on('click', ' td:not(:first-child)', function ()
Kevin