
I have a RadTabStrip and RadMultiPage which loads user controls for each tab. This I had to do using the PageViewCreated event of the RadMultiPage, but at least it works.
Now, I need to be able to navigate through the tabs from one of my user controls that are loaded into the PageViews in the RadMultiPage. If I set the RadTabStrip.Tabs[i].Selected = true then the tab is selected, but the assosciated PageView is not shown.
How can I programmatically get the PageView to show?
Thanks.
6 Answers, 1 is accepted
You should also select the pageview:
RadMultiPage1.PageViews[i].Selected =
true
;
Regards,
Yana
the Telerik team

Thanks, that seems to work. I assumed there would be some cleaner way but that will do I guess.
Craig

Hi David,
You can do that by showing/hiding an AjaxLoadingPanel like explained here:
Regards,
Vessy
Progress Telerik
Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.

Thank you Vessy!
I'll give it a try
Hi,
You are welome as always, David :)
Regards,
Vessy
Progress Telerik
Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.