I have a tabstrip linked to a RadTreeView via the RadAjaxManager. On a node click handler on server side, I add a new tab and a new PageView with some content on, then I select them:
RadMultiPageApps.PageViews.Add(pageView); |
RadTabStripApps.Tabs.Add(tab); |
tab.Selected = true; |
// only now select the pageview; apparently it needs the tab selected first. |
pageView.Selected = true; |
That works fine, except for any existing tab and PageView that were created on previous node clicks. Those PageViews lose their content.
I tried disabling postback for those tabs, on client side in the node click event, on server side, even both - without any effect.
What am I missing?
thanks.