Hai,
I have a tabstrip with 7 tabs and 7 pageviews in one multipage. Each of these tabs contains one grid, which binds with data on clicking the corresponding tab. But I want one tab to be selected on page load. I got it as selected by using the following code, but the corresponding grid inside the pageview is not showing.
I have a tabstrip with 7 tabs and 7 pageviews in one multipage. Each of these tabs contains one grid, which binds with data on clicking the corresponding tab. But I want one tab to be selected on page load. I got it as selected by using the following code, but the corresponding grid inside the pageview is not showing.
RadTabStrip3.Tabs[0].Selected =
true; //first tab in the tabs collection
LoadPlanMenuMon.Visible = true; //corresponding pageview
RadGrid1.Visible = true; //corresponding radgrid inside pageview
Plz help.