Currently have a asp:Wizard control performing fine when wrapped in an asp:Panel, however, once wrapped in a RadAjaxPanel it errors out. The UI design requires that the DisplaySideBar="false" so we are not interested in showing tabs, as former posts refer to using the Telerik Wizard demo sample.
Can anyone point out an item we may be overlooking?
The asp:Wizard sits inside a RadAjaxPanel in a WebUserControl.ascx. This WebUserControl.ascx is then part of a webform which sits inside a masterpage. Remember, when wrapped in an asp:Panel the page works just fine.
Below is the stubbed out templates for the asp:Wizard control inside the .ascx file:
Much Thanks.
Can anyone point out an item we may be overlooking?
The asp:Wizard sits inside a RadAjaxPanel in a WebUserControl.ascx. This WebUserControl.ascx is then part of a webform which sits inside a masterpage. Remember, when wrapped in an asp:Panel the page works just fine.
Below is the stubbed out templates for the asp:Wizard control inside the .ascx file:
<div> <telerik:RadAjaxPanel ID="panelwInterview" CssClass="panelsASP" Wrap="False" runat="server" Height="350px" Width="100%"> <ol><asp:Wizard ID="WizardInterview" runat="server" Height="100%" Width="100%" ActiveStepIndex="0" BorderStyle="None"> <HeaderTemplate> <li> <asp:ValidationSummary ID="ValidationSummaryInterview" runat="server" BorderStyle="None" DisplayMode="SingleParagraph" HeaderText="Please correct the following:" ShowMessageBox="True" /> </li> </HeaderTemplate> <StartNavigationTemplate> <telerik:RadButton ID="StepNextButton" runat="server" CommandName="MoveNext" Text="Next Question" CausesValidation="False"> </telerik:RadButton> </StartNavigationTemplate> <StepNavigationTemplate> <telerik:RadButton ID="StepPreviousButton" runat="server" CausesValidation="False" CommandName="MovePrevious" Text="Previous Question"> </telerik:RadButton> <telerik:RadButton ID="StepNextButton" runat="server" CommandName="MoveNext" Text="Next Question"> </telerik:RadButton> </StepNavigationTemplate> <FinishNavigationTemplate> <telerik:RadButton ID="FinishPreviousButton" CausesValidation="False" CommandName="MovePrevious" Text="Previous" runat="server"> </telerik:RadButton> <telerik:RadButton ID="FinishButton" CommandName="MoveComplete" Text="Finish" runat="server"> </telerik:RadButton> </FinishNavigationTemplate> <WizardSteps>...Much Thanks.