Ajax Accordion

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

Please do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.

This forum is for discussing mojoPortal development

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

You can monitor commits to the repository from this page. We also recommend developers to subscribe to email notifications in the developer forum as occasionally important things are announced.

Before posting questions here you might want to review the developer documentation.

Do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.
This thread is closed to new posts. You must sign in to post in the forums.
9/21/2009 4:47:23 PM
Gravatar
Total Posts 6
Kevin Tunis

Ajax Accordion

Can you use the Ajax Accordion http://www.asp.net/AJAX/AjaxControlToolkit/Samples/Accordion/Accordion.aspx. If you can, do you set the code in a HTML module?

9/22/2009 6:31:59 AM
Gravatar
Total Posts 18439

Re: Ajax Accordion

Hi,

No, that is a .NET server control it can not be used inside html content. It could be used in custom feature development but not in plain markup. Even for feature development I think the jQuery accordion is nicer myself and easier to use.

We have support for jQuery Accordion and jQuery tabs used directly in the html content but that is different, no server controls are involved, just markup and some javascript that wires it up based on css classes. The style of the accordion can be affected by setting the JQueryUIThemeName on the StyleSheetCombiner control in the layout.master file of your skin to any of the named jquery UI themes, a list of the names is in this thread on stackoverflow.

<portal:StyleSheetCombiner id="StyleSheetCombiner" runat="server" JQueryUIThemeName="swanky-purse" />

Hope it helps,

Joe

You must sign in to post in the forums. This thread is closed to new posts.