I have a master detail screen using two data sources (ds1, ds2). ds2 is setup with a foreign key to ds1. I want to display a page that has the master data shown as a read-only DynamicForm (I assume I use StaticTextItmes), and then show details in a grid.
The page is loaded dynamically, and based on a parameter the header data in ds1 will be loaded with a filterData call OR a editSelectedData call using a seperate grid on another area of the application that was passed in when the page loaded.
So here's my question...
For the detail grid from ds2, on instances when the filterData call is used, I don't have a handle on a record object and I'd like to use fetchRelatedData on the grid, but I don't see how I can get a handle to a "record" object on the DynamicForm. Or, I'm I going about this completely the wrong way?
The page is loaded dynamically, and based on a parameter the header data in ds1 will be loaded with a filterData call OR a editSelectedData call using a seperate grid on another area of the application that was passed in when the page loaded.
So here's my question...
For the detail grid from ds2, on instances when the filterData call is used, I don't have a handle on a record object and I'd like to use fetchRelatedData on the grid, but I don't see how I can get a handle to a "record" object on the DynamicForm. Or, I'm I going about this completely the wrong way?
Comment