My application has a split pane with one grid in the navigation pane and one in the list pane. The detail pane has 4 tabs with multiple forms and grids. Clicking on a record in the listpane grid should send something like fetchRelatedData to each of the elements in each of the tabs in the detail pane. I'm wondering if there is a best-practices way to do this. One solution would be to bind a function to recordClick in the listpane grid and have it fire fetchRelatedData to a list of elements in the detail pane. That would be fairly simple, but it does not take account of which tab in the detail pane is visible at the time. Maybe that's good enough? Or is there some fancier mechanism that magically updates the visible tab and causes the others to update when they are shown.
Thanks.
Thanks.
Comment