Ask a Question related to Macromedia Exchange Dreamweaver Extensions, Design and Development.
-
ajaxfanc #1
Spry - Accordion
Hi,
I'm building a menu for a website with the Spry accordion widget.
I want to open the accordion with a mouseOver-effect, but not close them with
a mouseOver.
When I change:
[Q]Spry.Widget.Accordion.addEventListener(tab, "mouseover", function(e) {
return self.onPanelTabMouseOver(e, panel); }, false);[/Q]
into
[Q]Spry.Widget.Accordion.addEventListener(tab, "mouseover", function(e) {
return self.onPanelTabClick(e, panel); }, false);[/Q]
the accordion also closes with a mouseOver. Because of this, the accordion
trips when you go from the first, to the second panel in the accordion. It
openens/closes again, againd, and again.
What must I do to let the accordion open on mouseOver, but not close on
mouseOver?
Sorry for any bad English :)
ajaxfanc Guest
-
Spry accordion with links??? Possible???
Fellow Dreamwearvers. I am trying, perhaps mistakenly, to use the accordion widget as a menu bar. I prefer it to the menu bar where the submenus... -
spry accordion
Hi I can't understand how to get the accordion to open a tab on mouse over. It just opens now when it's clicked. I found a lot of information on... -
Spry accordion content not hiding in IE
Hi all, I threw together a page using accordion menus (http://www.riverviewbiblecamp.com/menu.php), it works fine in Firefox, Safari, and Opera,... -
Closing Spry Accordion Panels
Hi, i use Spry Accordion for this site: http://dailycast.de I want to close a open panel by clicking on these panel? Here is my Code:... -
CS3 Spry Accordion Gaps
I have created a Coldfusion webpage with two Spry's, the accordian Spry and the Spry Menu Bar. When viewing the Spry Accordion in Internet explorer... -
danilocelic AdobeCommunityExpert #2
Re: Spry - Accordion
ajaxfanc wrote:
Perhaps in the onPanelTabClick method you can comment out the else statement at the beginning of the method:> What must I do to let the accordion open on mouseOver, but not close on
> mouseOver?
change:
if (panel != this.currentPanel)
this.openPanel(panel);
else
this.closePanel();
to:
if (panel != this.currentPanel)
this.openPanel(panel);
// else
// this.closePanel();
That seems to stop the panel from close on mouse over again.
Beyond that, Spry related question might be better asked in the Spry forum:
[url]http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid=72&catid=602[/url]
--
Danilo Celic
[url]http://blog.extensioneering.com/[/url]
danilocelic AdobeCommunityExpert Guest



Reply With Quote

