Click to See Complete Forum and Search --> : collapsible panel on roll over
tizbo1423
09-12-2008, 10:13 AM
i am using a collapsible panel for part of my navigation bar and i have been trying to figure out how to make it so that when i roll over the "tab" of the panel, the content shows up, instead of having it on mouseClick.
does anyone know how i can edit that in the CSS/Dreamweaver?
ryanbutler
09-12-2008, 11:01 AM
The only thing I can think of is to look in the behaviors panel of Dreamweaver and see if the collapsible panel is in there. If so, it may have an event associated with it, which means that it'll probably show onMouseClick. Just change it to onMouseOver.
Mr. Haddnin
09-22-2008, 03:36 PM
Change this line in the SpryCollapsiblePanel.js:Spry.Widget.CollapsiblePanel.addEventListener(tab, "click", function(e) { return self.onTabClick(e); }, false);
To:
Spry.Widget.CollapsiblePanel.addEventListener(tab, "mouseover", function(e) { return self.onTabClick(e); }, false);
nonos
05-06-2009, 04:47 AM
Change this line in the SpryCollapsiblePanel.js:Spry.Widget.CollapsiblePanel.addEventListener(tab, "click", function(e) { return self.onTabClick(e); }, false);
To:
Spry.Widget.CollapsiblePanel.addEventListener(tab, "mouseover", function(e) { return self.onTabClick(e); }, false);
i have aproblem with collapsiblepanal,i used 4 collpsible i want to make when i click on one of them other closed ,if i was opening the second collapsible and want to open the next the previous closed ok
how to make it??