Click here to Skip to main content
15,887,267 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
heyy..I am using ajax accordion ..and I have 5 accordion panel ..and also i put back and next button in that accordion ...My problem is ..while first time loading the back and next button is working fine ..but when click on the acoordion panel 2 and click back button ..it is not woking... here is my code please ref. that.. and give a solution ..


C#
protected void imgBlockNext_Click(object sender, ImageClickEventArgs e)
 {
     imgBlockNext.CausesValidation = false;
     Accordion1.SelectedIndex = 3;


 }
 protected void imgBlockPrev_Click(object sender, ImageClickEventArgs e)
 {
     imgBlockPrev.CausesValidation = false;
     Accordion1.SelectedIndex = 1;


 }



the selected index of accordion is not working when click a control or any textbox that inside the accordion panel
Posted

1 solution

Did you tried separating ValidationGroup of the controls in each Accordion Pane?
Try giving saparate validation group for the controls of each pane and set CausesValidation false in next and previous button property.


--Amit
 
Share this answer
 
Comments
aravindnass 4-Mar-13 4:48am    
yes ..I use validation group ..and I already use causesValidation =false
here is my source code..
<asp:AccordionPane ID="AccordionPane3" runat="server">
<Header>
Block Entry
<asp:ImageButton ID="imgBlockPrev" runat="server" CssClass="arrowleft4" OnClick="imgBlockPrev_Click" CausesValidation="false"
ImageUrl="~/Images/NewImage/back_22x26.png" ToolTip="Previous" ValidationGroup="BlockEntry" />
<asp:ImageButton ID="imgBlockNext" runat="server" CssClass="arrowalt2" OnClick="imgBlockNext_Click" CausesValidation="false"
ImageUrl="~/Images/NewImage/next_22x26.png" ToolTip="Next" ValidationGroup="BlockEntry" />
</Header>

Also ,all the contols in accordion panel is under a update panel....

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900