In my grid, one row was selected then I rebind that grid using grid.rebind() method. Now how can I select the same row which was previously selected before rebind.
I have tried with below code, but not able to select that row.
var selectedRow = $("#abcgrid tbody tr.t-state-selected");
var abcgrid = $("#abcgrid").data("tGrid");
abcgrid .rebind();
selectedRow.addClass("t-state-selected");
Also tried
var selectedRow = $("#abcgrid tbody tr.t-state-selected");
var selectedRowID = ($(selectedRow)[0]).cells[0].innerHTML;
var gridRows = $("#abcgrid .t-grid-content tbody > tr");
if (gridRows != null) {
gridRows.each(function (index, row) {
if (row.cells[0].innerHTML == selectedRowID ) {
$(row).addClass("t-state-selected");
}
});
}
Both code doesnt work. Please guide me to select that row. Am i misssing something. Note - their is no javascript error.