Skip to main content

Bug Tracker

Side navigation

#993 closed feature (worksforme)

Opened February 22, 2007 09:04PM UTC

Closed January 24, 2008 06:19PM UTC

.expandAll() for Accordian plugin

Reported by: cdomigan Owned by: joern
Priority: trivial Milestone: 1.1.3
Component: plugin Version: 1.1.1
Keywords: Cc:
Blocked by: Blocking:
Description

Would be handy to have expandAll and closeAll functions that can be triggered.

Attachments (0)
Change History (3)

Changed June 20, 2007 10:02PM UTC by joern comment:1

need: → Review
owner: johnjoern

Changed September 14, 2007 05:32AM UTC by robbiesmith7 comment:2

$(".selector").activate(-1) will close all open menus...

If you wanted to expand all, there are several ways to do so,

a) untested

for ($x=0;$x<number_of_elements;$x++) {

$(".selector").activate($x);

}

b) do them each one at a time by using the activate command

Changed January 24, 2008 06:19PM UTC by joern comment:3

resolution: → worksforme
status: newclosed

The point of the accordion is to *not* allow more then one part being open. Closeing everything is already possible.