Hi,
On my webform, I have a RadTabStrip and a CollapsablePanel.
I want to disable/Enable that CollapsablePanel on click of Tabs of RadTabStrip.
Can someone please tell me how can I achieve this ?
Here is my controls on my form. I am just putting basic code only.
What I am looking for is on click of first tab, I want to disable second panel and enable first panel,
and on click of second tab, I want to disable first panel and enable second panel.
#######################################################
On my webform, I have a RadTabStrip and a CollapsablePanel.
I want to disable/Enable that CollapsablePanel on click of Tabs of RadTabStrip.
Can someone please tell me how can I achieve this ?
Here is my controls on my form. I am just putting basic code only.
What I am looking for is on click of first tab, I want to disable second panel and enable first panel,
and on click of second tab, I want to disable first panel and enable second panel.
#######################################################
| <ew:CollapsablePanel ID="CollapsablePanel1" runat="server" AllowSliding="true" > |
| </ew:CollapsablePanel> |
| <ew:CollapsablePanel ID="CollapsablePanel2" runat="server" AllowSliding="true" > |
| </ew:CollapsablePanel> |
| <telerik:RadTabStrip ID="RadTabStrip1" runat="server" MultiPageID="RadMultiPage1" |
| SelectedIndex="0" Width="100%"> |
| <Tabs> |
| <telerik:RadTab runat="server" PageViewID="pv1" Text="pv1" Selected="True" > |
| </telerik:RadTab> |
| <telerik:RadTab runat="server" PageViewID="pv2" Text="pv2" > |
| </telerik:RadTab> |
| </Tabs> |
| </telerik:RadTabStrip> |
| <telerik:RadMultiPage ID="RadMultiPage1" runat="server" BorderStyle="None" BorderWidth="1px" |
| CssClass="pageView" SelectedIndex="0"> |
| <telerik:RadPageView ID="pv1" runat="server" > |
| </telerik:RadPageView> |
| <telerik:RadPageView ID="pv2" runat="server" > |
| </telerik:RadPageView> |
| </telerik:RadMultiPage> |
#######################################################