(Excuses for my highly-probable horrible english )
I am developping a web site in which there is an accordion. This accordion has 4
AccordionPanes and each AccordionPane has tables and text separated by sections. The thing is: I don't know how to open one specific
AccordionPane when the page is loaded.
For example: I have a "Manual.aspx" which has an accordion (4 AccordionPanes) like that :
- AccordionPane1:
-> #Section1 (anchor)
-> #Section2
- AccordionPane2
-> #Section3
- AccordionPane3
-> #Section4
-> #Section5
-> #Section6
-> #Section7
- AccordionPane4
-> #Section8
and the page mutation.aspx in which I have the following link:
<a href=Manual.aspx#section3>See the section 3</a>
But when I clicks the link, Manual.aspx is loaded but not in the desired section.
jlgonzalezpi...
0 Points
1 Post
Open an anchor into an accordion from a different page
Aug 17, 2012 05:10 PM|LINK
Hello to every one!
(Excuses for my highly-probable horrible english
)
I am developping a web site in which there is an accordion. This accordion has 4 AccordionPanes and each AccordionPane has tables and text separated by sections. The thing is: I don't know how to open one specific AccordionPane when the page is loaded.
For example: I have a "Manual.aspx" which has an accordion (4 AccordionPanes) like that :
- AccordionPane1:
-> #Section1 (anchor)
-> #Section2
- AccordionPane2
-> #Section3
- AccordionPane3
-> #Section4
-> #Section5
-> #Section6
-> #Section7
- AccordionPane4
-> #Section8
and the page mutation.aspx in which I have the following link:
But when I clicks the link, Manual.aspx is loaded but not in the desired section.
does Someone know how to do that correctly?
Sorry for my english again.
mitja.GTI
Star
11157 Points
2094 Posts
Re: Open an anchor into an accordion from a different page
Aug 18, 2012 05:54 PM|LINK
Please refer to AjaxControlToolkit Documentation (Accordion Properties).
<ajaxToolkit:Accordion ID="MyAccordion" runat="Server" SelectedIndex="0" ...You can also set that value in code behind (e.g. in pageLoad event)
mitja.gti | www.mitjagti.com