I am using a JQuery DataTable.
In my server side code, I am re-trieving the record id and passing it to my javascript function.
My javascript function will look for the row as per the row id and then set the class to selected.
function selectBuyer(agid)
{
$('#tr_buyer_' + agid).addClass("row_selected");
}
This works and highlights the row accordingly.
However I would like the datatable to navigate to that record. So if it was on the 3rd page, it will display the 3rd page. Currently right now, if I navigate to the third page, it will show the highlighted row.
Any ideas?