I have the following code below. For example, on the first iteration i have 10 rows. I select one row and it goes back to the server to drill down and get more data. When the data comes back, I cannot select the first row. All the other rows i am able to select and drill down further. What am i missing?
$(“#TableDetailsGrid”).jqxGrid({
width: QueryListTableWindowDataGridWidth,
height: QueryListTableWindowDataGridHeight,
source: tableDataSourceAdapter,
theme: websiteTheme,
sortable: true,
filterable: true,
columnsheight: 40,
autoshowfiltericon: true,
altrows: true,
columns: tableColumnDataJson,
groupable: true
});
$(“#TableDetailsGrid”).on(‘rowselect’, function(event) {
var datarow = $(“#TableDetailsGrid”).jqxGrid(‘getrowdata’, row);
var selectedValue = getValueFromJsonString(datarow,selectedColumnDesc);
refreshGrid();
});