Hi,
I am using Rad tab strip and my page can be changed from editable and lock mode at run time. when i am in tab 1 and i click on edit and lock buttons, page works as expected. but when i go to tab 2 and click on edit button, i cannot do any other operation in the page.i cannot navigate to another tab or clik on anything. if i click on edit in tab 1 and then come to tab 2 everything works as expected.but when i click on edit in tab 2 this behavior is seen.
the only thing my edit button does is that it enables all the controls on the page view which are previously disabled. iam not doing anything specific in the page load to create any problem.
any idea why this is happening. below is my code
I am using Rad tab strip and my page can be changed from editable and lock mode at run time. when i am in tab 1 and i click on edit and lock buttons, page works as expected. but when i go to tab 2 and click on edit button, i cannot do any other operation in the page.i cannot navigate to another tab or clik on anything. if i click on edit in tab 1 and then come to tab 2 everything works as expected.but when i click on edit in tab 2 this behavior is seen.
the only thing my edit button does is that it enables all the controls on the page view which are previously disabled. iam not doing anything specific in the page load to create any problem.
any idea why this is happening. below is my code
<telerik:RadTabStrip ID="RadTabStrip1" runat="server"
Skin="WebBlue" MultiPageID="RadMultiPage1" SelectedIndex="0"
Align="Justify" ReorderTabsOnSelect="True" Font-Bold="True" Height="25px">
<Tabs>
<telerik:RadTab runat="server" Text="P" Selected="True">
</telerik:RadTab>
<telerik:RadTab runat="server" Text="A">
</telerik:RadTab>
<telerik:RadTab runat="server" Text="O">
</telerik:RadTab>
<telerik:RadTab runat="server" Text="T">
</telerik:RadTab>
<telerik:RadTab runat="server" Text="L">
</telerik:RadTab>
<telerik:RadTab runat="server" Text="T">
</telerik:RadTab>
<telerik:RadTab runat="server" Text="P">
</telerik:RadTab>
<telerik:RadTab runat="server" Text="K">
</telerik:RadTab>
</Tabs>
</telerik:RadTabStrip>