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

Umesh132200Umesh132200 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

Answers

  • kthorngrenkthorngren Posts: 20,393Questions: 26Answers: 4,786
    Answer ✓

    Will something like this work for you?
    $('#example tbody tr').on('click', ' td:not(:first-child)', function ()

    Kevin

This discussion has been closed.