I am trying to populate a grid in a grid. I am using the LGPL version. I take the embeded grid example code from SDK and tried to write my own code(Client only).My firstt main grid is displaying correctly but when I am double clicking any row, the embeded grid is not populating.I tried to search the JS function "openRecordDetailGrid()" in document but could not find it as on double click of main grid row I am calling this method as following:
var r = mainList.getSelectedRecord();
if (r) {
categoryList.openRecordDetailGrid(r,embItem);
}
where "mainList" is my main grid ID. And "embItem" is my datasource for embeded grid.
Any help ?
var r = mainList.getSelectedRecord();
if (r) {
categoryList.openRecordDetailGrid(r,embItem);
}
where "mainList" is my main grid ID. And "embItem" is my datasource for embeded grid.
Any help ?
Comment