Hi,
Up until now, if I wanted to reference a selected row in a ListGrid, I'd use the following:
record = myListGrid.getSelectedRecord();
detailSearchForm.findDetail(record.id);
However, if the ListGrid gets refreshed, then my selected record is lost.
What's the best way to persist the selected id ?
Should I just use a global JS variable of some kind?
Or does ISC have some sort of session object that I should use to store variables?
Thanks,
Mike
Up until now, if I wanted to reference a selected row in a ListGrid, I'd use the following:
record = myListGrid.getSelectedRecord();
detailSearchForm.findDetail(record.id);
However, if the ListGrid gets refreshed, then my selected record is lost.
What's the best way to persist the selected id ?
Should I just use a global JS variable of some kind?
Or does ISC have some sort of session object that I should use to store variables?
Thanks,
Mike
Comment