I have a RadGrid which shows many columns. Selecting a row causes a client event that writes the record id of the selected row to a cookie. This works. Now, I would like to set up a master/details scenario such that below the grid are multiple tabs-- that is, the content displayed below the grid and tabstrip is dependent on both which row in the grid was selected, and also upon which tab is currently selected. Thus, if the tab selection changes, I would like to dynamically load a usercontrol which should render the content for that tab. These usercontrols can read the cookie, perform databinding and render themselves. If the row selection changes, I would similarly like the last loaded control to reload itself.
I have tried a number of things and can't seem to get things right with the page lifecycle and the order in which events fire. Any suggestions on a general approach?
I have tried a number of things and can't seem to get things right with the page lifecycle and the order in which events fire. Any suggestions on a general approach?