I have a few data sources that are related in standard header/detail pattern. In this case the header has a few different sets of details. The header records are listed in a ListGrid and when the user selects a ListGrid record we open a new window with multiple tabs. One tab shows a form with fields from the header record (via form.editRecord(theSelectedListGridRecord)) . Other tabs show additional ListGrids that are filled with the various details.
When the window first opens, the user can start editing the header form fields while the detail ListGrids are still waiting for data to arrive. But some of the methods that are triggered by the users changes to the header fields need to reference the data in the detail ListGrids.
How do I keep the "Contacting server" dialog in place until all of the ListGrids are populated?
When the window first opens, the user can start editing the header form fields while the detail ListGrids are still waiting for data to arrive. But some of the methods that are triggered by the users changes to the header fields need to reference the data in the detail ListGrids.
How do I keep the "Contacting server" dialog in place until all of the ListGrids are populated?
Comment