Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Wizard doesn't advance:

Status
Not open for further replies.

NuJoizey

MIS
Aug 16, 2006
450
US
what gives here? I have the same thing on another aspx page that works fine. It's a wizard control inside a modal popopextender control.

I plop the same code and the wizard doesn't advance when I click the next button - what's wrong? It's probably somehting simple,but I can't see it

Code:
<asp:Panel ID="panNewPlacement2" Visible="true" runat="server" style="display:none; width:422px; position:relative; left:auto; right:auto;" CssClass="modalPopupNewPlacement">       
       
        <asp:UpdatePanel ID="updNewPlacement" runat="server">
            <ContentTemplate> 
                <div>
                    <asp:Wizard ID="wizNewPlacement" runat="server" ActiveStepIndex="0" Width="422px" 
                        BackColor="#EFEFEF" BorderColor="black" BorderWidth="1px" 
                        Font-Size="0.8em" CellPadding="5" DisplayCancelButton="true"
                        OnCancelButtonClick="wizNewPlacement_CancelButtonClick"
                    >
                    
                        <WizardSteps>
                                                                
                            <asp:WizardStep ID="wizNewPlacementStep1" runat="server" Title="Step 1">
                                <div style="padding:5px;" > 
                                    <asp:Label ID="lblStep1" runat="server" style="margin-left:55px; color:#660033;" Text="Step 1: What Kind of Placment is this?" />
                                </div>
                                <div style="padding-bottom:10px; padding-left:10px; padding-right:10px;">
                                   <fieldset class="leftFieldset">
                                    <legend class="leftNavLegend">Placement Options:</legend>
                                        <asp:RadioButtonList ID="rblPlacementOptions" runat="server">
                                            <asp:ListItem Text="New Business" Selected="true" Value="1" Enabled="true" />
                                            <asp:ListItem Text="Renewal" Selected="false" Value="2" Enabled="true" />
                                            <asp:ListItem Text="Cancel/Rewrite" Selected="false" Value="3" Enabled="true" />
                                        </asp:RadioButtonList>
                                   </fieldset> 
                                </div>
                            </asp:WizardStep>
                            
                                   
                            <asp:WizardStep ID="wizNewPlacementStep2" runat="server" Title="Step 2">
                                <div style="padding:15px;" > 
                                    <asp:Label ID="lblStep2" runat="server" style="margin-left:55px; color:#660033;" Text="Step 2: New or Existing Term?" />
                                </div>                                
                            </asp:WizardStep>
                                    
                        </WizardSteps>
                        
                        <SideBarStyle BackColor="#232d54" Font-Size="0.9em" VerticalAlign="Middle"   />                                 
                             <SideBarTemplate>                                               
                                    <asp:datalist runat="Server" id="SideBarList">
                                      <ItemTemplate>                                          
                                            <asp:linkbutton runat="server" id="SideBarButton" Font-Bold="false" ForeColor="white"/>
                                      </ItemTemplate>
                                       <SelectedItemTemplate>
                                           <asp:LinkButton ID="SideBarButton" runat="server" Font-Bold="true" 
                                            ForeColor="Yellow" 
                                            Style="font-size:1.2em;"/>
                                       </SelectedItemTemplate>
                                   </asp:datalist>                                   
                            </SideBarTemplate>
                            <NavigationButtonStyle BackColor="White" BorderColor="#660033" BorderStyle="Solid"
                                BorderWidth="1px" Font-Names="Verdana" Font-Size="0.8em" ForeColor="#660033" />
                            <SideBarButtonStyle ForeColor="white" />                                
                            <HeaderTemplate>Adding a New Placement for ACCOUNT NAME HERE:</HeaderTemplate>
                            <HeaderStyle BackColor="#0c4f7a" BorderColor="Black" BorderStyle="Solid" BorderWidth="1px"
                                Font-Bold="True" Font-Size="0.9em" ForeColor="White" HorizontalAlign="Center" />
                                    
                    </asp:Wizard>             
              
                </div>
            
            
            </ContentTemplate>        
        </asp:UpdatePanel>        
    </asp:Panel>
 
i figured it out. This problem was indeeed being caused by validation controls elsewhere on my form that were being activated at the wrong time, but were hidden from view, which made it hard to troubleshoot.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top