I have several tabItems, which contain 1-3 gridviews. I don't want to populate the grids on the tabs until the tab is selected. What is the best method to implement this strategy?
Hello,
You can use following way for this:
Handle the SelectedTabChange lestener. On each tab place Grid skeleton (only the grid tag and use component binding for this) in Jsp to create the grid dynamically. On the server inside the tab change listener, create the grid dynamically and populate it according to your need.
Roshan