Hello,
Back again! updating my application.
I am trying to implement double-click to display details of a selected (double-clicked) row.
$('#example tbody').on('dblclick', 'tr', function () {
dataTable.rows(this).select();
});
My table has three fixed columns (including the numbered column). The above code works but not on the fixed columns. Any idea on how to receive the double-click event from a fixed column?
The requirement (using Bootstrap 3 version, with editor and select plugins):
1. Select the double-clicked row (a problem for fixed columns)
2. Display the selected data (not a problem, if selection works)