I have a situation in which I have 3 tabs each with a grid control. Each tab would have different data loaded in the grid. Rather than putting a seperate grid on each tab, I was looking for a way to have a single grid and just load different data as the tab changes. This would be similar to the Microsoft TabStrip control if I remember correctly. Any thoughts?
Hi Frank,
UltraWebTab uses separate content for every tab. So, it can not be used to keep same content for different tabs.
Thanks for the response. I actually solved my problem by setting the height of the tab control to zero pixels and placing a table containing the grid below it with a border on the left, right, and bottom. In the tab click event, I simply load the appropriate data into the grid. This functions similar to the Microsoft tab strip control.
Frank, this saved me a lot of time. I did just what you did and just filtered the grid based on the tab click. It works great.