How do I reset my detail grid, say with the first row key from my master grid from a combo box change event? I've followed the examples and can load the master grid fine. The master grid row select also loads the detail fine...
I started running into issues when I wired up a combo box that I use filter out records on my master grid - that also works fine and I can filter and load the data I want. However, in that combo box change event, I want to either set the detail grid to no records say (ie. make sure it is not displaying the previous master grid selection detail results)...or preferably load the detail grid by default with the first row key from my master grid...
It is unclear to me though how to accomplish that...how to trigger the master row select from a different event...and in the change event of my combo box, the master refresh does not complete in that event (thus it does not appear that I can call the select row at that point from what I can see)...so I don't know how to fire the row select event problematically say passing row 0 by default...
load page combo box defaults to All master records
master loads
detail is empty
select master row (say key type = foo
detail loads foo details
select combo choice (type=bar)
master loads all records of type bar
detail still shows foo details << I want to reset detail grid or show first details per master row key 0...
Thanks