So if you look at the example in "Load on demand" you have 6 tabs the first 5 use a "ContentUrl" the last one is a Template with a WebDataGrid in it. Works great...
Now let’s say all 6 tabs are different grids, just like the last one.
At the top of the page there are inputs that cause the data in all 6 grids to change.
So the first time I load the page each grid loads on demand, perfect. Now I change the options at the top, how do I then get the displaying page to reload and each of the other pages to reload on demand once they are clicked on?
I do not see an obvious way to do this.
Hello mland ,
Thank you for posting in our forums.
I guess you are talking about the below online sample
http://samples.infragistics.com/aspnet/Samples/WebTab/Performance/LoadOnDemand/Default.aspx?cn=tab&sid=c29b595c-e834-4949-a165-a583eb9d919c
One way to achieve this is using submit button after the change of the options at the top.
You can handle the button click event and rebind the grids to the new datasources and on tab item click the new data should be shown and the grid will be loaded on demand.
Another options is rebinding each grid individually in SelectedIndexChanged event handler.
Please let me know if you need further assistance regarding this