Hi,
App has a page with multiple jqxgrids. Id of each grid is dynamically generated.
There is a button in each row of grids. On click of button, i need to figure out row data. If we have id of the grid, it is straight forward.
But how do we get the row data if we don’t know the corresponding grid id?
columns: [
{ text: ”, dataField: ‘button’, width: ‘8%’, columntype:’button’, cellsrenderer: function () {
return ‘Enter’;
}, buttonclick: function (row, event) {
// id = $(“unknown”).jqxGrid(‘getrowid’, row);
}
}