How to deselect a row when searching in Column
How to deselect a row when searching in Column
Hollywood
Posts: 2Questions: 2Answers: 0
Hi Experts.
properties:
"select": true,
"filter": true,
Using columnFilter.
For selection i use:
$('#' + tblId + ' tbody').on('click', 'tr', function ()
{
$(this).toggleClass('selected');
});
When i search in one of my Columns, i want that my previously selected row will be deselected.
How can i hook into the aoColumns to deselect selected rows?
Any help? - Thx. Hollywood
This discussion has been closed.