How do I create an 'OnLoad' event to display/open a particular child table when the list page loads?
I tried the following from the documentation without success:
--------------------------------------------------------------------------
// define table name of current list page:
var tableName = 'TableName';
var pageObj = Runner.pages.PageManager.getAt(tableName, pageid);
// get list of record IDs
var recsId = pageObj..getRecsId();
// get details table short table name
var dTableName = 'DetailsTableName';
var sTableName = Runner.pages.PageSettings.getShortTName(dTableName);
// click preview link of record number X
$("#"+sTableName+"_preview"+recsId[X]).click();
-----------------------------------------------------------------------------------
Is the 'inlineEdit' in the above correct? I want to 'list' the child records inline.
Thanks,
Jack