Is it possible to highlight the entire row when doing bubble edit?
In your event handler for clicking on a cell, you could add a class to the row - e.g.:
$('#example').on( 'click', 'tbody td:not(:first-child)', function (e) { $(this).closest('tr').addClass('highlight'); editor.bubble( this ); } );
Then in close remove the highlight class from the row.
close
Allan
Thanks it worked
It looks like you're new here. If you want to get involved, click one of these buttons!
Replies
In your event handler for clicking on a cell, you could add a class to the row - e.g.:
Then in
close
remove the highlight class from the row.Allan
Thanks it worked