Hello lwoodell ,
I am new to iggrid.
I can`t call the ighierarchicalgridrowexpanding event when i click the plus icon of the parent row. So, I used the rowExpanding event as below:
rowExpanding : function(e, args) {
var parentRow = args.parentrow;
var parentRowId = parentRow.attr("data-id");
var pk = $("#gridId").igGrid("getCellValue", parentRowId, "ColumnKey");
}
Then, I got the following error:
Cannot read property dataType of null in infragistics.lob.js
May I know what is the data-id in following line:
var parentRowId = parentRow.attr("data-id");
Thanks