I have a bit strange issue in my tab , when I am trying to change the tab run time , it will select the tab but does not show tab page view!
Any one suggest me some idea for it!
All I am doing is one a user control Handler I am trying to change the tab index!
Thanks for the time!
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolderContent" runat="server"> <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanelDemo" runat="server" Skin="Metro"> </telerik:RadAjaxLoadingPanel> <telerik:RadAjaxManagerProxy ID="radAjaxManagerAllBetsDifficultToRead" runat="server"> <AjaxSettings> <telerik:AjaxSetting AjaxControlID="ucAllBetsDifficultToRead"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="ucBetsDifficultToReadDetail" /> </UpdatedControls> </telerik:AjaxSetting> <telerik:AjaxSetting AjaxControlID="radMultiPageAllBetsDifficultToRead"> <UpdatedControls> <telerik:AjaxUpdatedControl ControlID="radTabStripAllBetsDifficultToRead" /> </UpdatedControls> </telerik:AjaxSetting> </AjaxSettings> </telerik:RadAjaxManagerProxy> <div id="maincontent" class="tabpage"> <telerik:RadTabStrip ID="radTabStripAllBetsDifficultToRead" runat="server" SelectedIndex="0" Skin="Metro" MultiPageID="radMultiPageAllBetsDifficultToRead"> <Tabs> <telerik:RadTab runat="server" Text="All Bets" Selected="True"> </telerik:RadTab> <telerik:RadTab runat="server" Text="Selected Bets"> </telerik:RadTab> </Tabs> </telerik:RadTabStrip> <telerik:RadMultiPage ID="radMultiPageAllBetsDifficultToRead" runat="server" SelectedIndex="0" CssClass="pageView" Width="98%"> <telerik:RadPageView ID="radPageViewTakeBet" runat="server"> <br /> <uc1:AllBetsDifficultToRead ID="ucAllBetsDifficultToRead" runat="server" OnCheckClick="UcAllBetsDifficultToReadClick" /> <br /> </telerik:RadPageView> <telerik:RadPageView ID="radPageViewTranslate" runat="server"> <br /> <uc2:BetsDifficultToReadDetail ID="ucBetsDifficultToReadDetail" runat="server" /> <br /> </telerik:RadPageView> </telerik:RadMultiPage> <br /> <br /> </div></asp:Content>Any one suggest me some idea for it!
All I am doing is one a user control Handler I am trying to change the tab index!
protected void UcAllBetsDifficultToReadClick(object sender, EventArgs e) { radMultiPageAllBetsDifficultToRead.SelectedIndex = 1; radTabStripAllBetsDifficultToRead.Tabs[1].Selected = true; radMultiPageAllBetsDifficultToRead.PageViews[1].Selected = true; // radMultiPageAllBetsDifficultToRead.SelectedIndex = 1; }Thanks for the time!
