Hi,
I have a requirement where I have to set focus (highlight) on a particular sales order record in the form's grid (FormB).
FormB receives salesId (of the recod to be selected) as an args parameter (from FormA).
I have written below code in FormB's init() method, but can't get it to work. Could someone please suggest:
public void init()
{
SalesTable sl;
super();
sl = SalesTable::find('SO-XXXXXX');
salesTable_ds.research();
salesTable_ds.findRecord(sl);
}
*This post is locked for comments