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
Replies
In your event handler for clicking on a cell, you could add a class to the row - e.g.:
Then in
closeremove the highlight class from the row.Allan
Thanks it worked