FLUID-2835: Toggle open and close for categories (i.e. Easier to see, easier to find) doesn't allow for manually closing

Metadata

Source
FLUID-2835
Type
Bug
Priority
Major
Status
Closed
Resolution
Fixed
Assignee
N/A
Reporter
Daphne Ogle
Created
2009-05-28T21:15:52.000-0400
Updated
2011-03-04T15:43:06.786-0500
Versions
  1. 1.0
  2. 1.1
  3. 1.1.1
  4. 1.1.2
  5. 1.2
Fixed Versions
N/A
Component
  1. UI Options

Description

Currently, it looks like the toggle can't be closed manually and is only closed when another category is open. I thing the behavior we want is for the user to choose when they open and close. Easier to see should still be the only one open by default but users may want to have everything open and scroll rather than opening and closing all the time.

Environments

FF2, FF3, Opera 9.6, Safari 3.2 (Mac OS 10.5)
Safari 3.2 (Mac OS 10.4)
FF2, FF3, IE6, IE7, IE8, Opera 9.6 (Win XP)
FF3, IE7, IE8 (Win Vista)
IE6 (Win 2000)

Comments

  • Justin Obara commented 2009-06-02T09:48:26.000-0400

    This is the nature of an accordion.

    Here is the comment from jquery UI about this.
    (http://jqueryui.com/demos/accordion/)

    NOTE: If you want multiple sections open at once, don't use an accordion

    An accordion doesn't allow more than one content panel to be open at the same time, and it takes a lot of effort to do that. If you are looking for a widget that allows more than one content panel to be open, don't use this. Usually it can be written with a few lines of jQuery instead, something like this:

    jQuery(document).ready(function(){
    $('.accordion .head').click(function() {
    $(this).next().toggle();
    return false;
    }).next().hide();
    });

    Or animated:

    jQuery(document).ready(function(){
    $('.accordion .head').click(function() {
    $(this).next().toggle('slow');
    return false;
    }).next().hide();
    });

  • Justin Obara commented 2009-11-06T14:23:07.000-0500

    The "Cabinet" component that is in Engage may be useful for this

  • heidi valles commented 2010-10-05T09:26:49.930-0400

    do we still want to use the accordion?

  • Michelle D'Souza commented 2011-03-04T15:43:06.776-0500

    This is no longer an issue because the new designs do not have an accordion.