I am trying to implement a solution on a website where some pages have a RadTabStrip (with the MultiPageID set) with multiple tabs (with the PageViewID set).
When navigating to a page you can set the focus be set to a specific control that may be in a RadPageView. If that is the case what is the best way to select the tab that corresponds to the page view that contains the control?
Basically when focus is set to a control in a RadPageView how do I make sure the rad tab is selected so that control can be seen on the page?
I can find the control on the page that needs focus and then find the parent RadPageView (and RadMultiPage), but I don't know of a good way to select the RadTab that corresponds to the RadPageView (since I don't know the ID of the RadTabStrip).
Am I forced to recursively search through the controls on to the page to find the RadTabStrip (by type) and then find the tab that has the matching PageViewID?
Thanks!