hi,
I tried the above but I get the following error:
"Editing the specified row or column is currently not possible. It should be in view on the current page and virtualization frame.
My code is as below:
$(document).delegate("#igGrid", "iggriddatarendered", function (evt, ui) {
if (expandAll === true) {
var parentGrid = $("#igGrid").igHierarchicalGrid("rootWidget");
var domElement = parentGrid.rowById(rowID);
if (domElement != null) {
$("#igGrid").igHierarchicalGrid("expand", domElement, function () {
//updating the first row of the first child table
var children = $("#igGrid").igHierarchicalGrid("allChildren");
children.eq(0).igGridUpdating("startEdit", currentTradeIdFileTypeId);
});
}
}
});