Hi guys
As pe the example at http://demos.telerik.com/aspnet-ajax/editor/examples/externaldialogspath/defaultvb.aspx, I'm trying to hide two of the four tabs when you use 'Table Wizard'.
I'd like to keep Designer and Accessible Table but omit TableProperties and CellProperties - I can hide the two tabs but when clicking on the 'Accessible' tab, I get the content from the 'Table Properties' tab instead.
How can I hide the two tabs AND ensure the remaining two tabs behave as expected? Is it because the second tab is always expected to be the Table Properties one?
I had used this code in TableWizad.ascx:
As pe the example at http://demos.telerik.com/aspnet-ajax/editor/examples/externaldialogspath/defaultvb.aspx, I'm trying to hide two of the four tabs when you use 'Table Wizard'.
I'd like to keep Designer and Accessible Table but omit TableProperties and CellProperties - I can hide the two tabs but when clicking on the 'Accessible' tab, I get the content from the 'Table Properties' tab instead.
How can I hide the two tabs AND ensure the remaining two tabs behave as expected? Is it because the second tab is always expected to be the Table Properties one?
I had used this code in TableWizad.ascx:
<telerik:RadTabStrip ShowBaseline="true" ID="TableWizardTab" runat="server" SelectedIndex="0" MultiPageID="dialogMultiPage"> <Tabs> <telerik:RadTab Text="Table Design" Value="Tab1HeaderText"> </telerik:RadTab> <telerik:RadTab Text="Table Properties" Value="Tab2HeaderText"> </telerik:RadTab> <telerik:RadTab Text="Cell Properties" Visible="false" Value="Tab3HeaderText"> </telerik:RadTab> <telerik:RadTab Text="Accessibility" Value="Tab4HeaderText"> </telerik:RadTab> </Tabs></telerik:RadTabStrip>
Any help would be greatly appreciated.
Regards
Neil