I have a grid which has a unique ID for each row passed on in the following way :
var source = {
datatype: "json",
datafields: this.gridData.datafields, // Represents the name & type of data in each column
localdata: this.gridData.jqxGridRows, // Holds the data for each row of the table
id: this.idFieldName
};
When i use $('#jqxGrid').jqxGrid('getrowdatabyid', rowid);
, it works absolutely fine and I get the data of the required row.
However, if i delete a row in the following way :
$('#jqxGrid').jqxGrid('deleterow', rowid);
Delete works, but then ‘getrowdatabyid’ just doesn’t work and returns undefined.
Note : i’m not utilizing the ‘deleterow’ callback of the jqxDataAdapter’s source object.