Dattaya / Maccordion

Same as jQueryUI Accordion, but allows more than one content panel to be open at the same time

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

README

What is Maccordion?

Maccordion is a jQueryUI plugin, similar to jQuery UI Accordion but allows more than one content panel to be opened at the same time.

Options: disabled, active, effect, options, easing, speed, heightStyle, event, header, icons.

Methods: destroy, disable, enable, option, widget, refresh.

Events: create, beforeActivate, activate.

Dependencies

  • UI Core
  • UI Widget
  • UI Effects Core + UI Effects Blind if "effect" option is used.

Screenshot

Maccordion

Minified

Minified Maccordion is stored on SkyDrive.

Options

disabled

bool disabled : false (example)

Disables (true) or enables (false) the maccordion. Can be set when initializing the maccordion.

//Initialization
$( ".selector" ).accordion({ disabled: true });

//Set
$( ".selector" ).accordion( "option", "disabled", true );

active

mixed active : 0

number (example) Toggles tab. Supports negative numbers (works like jQuery .eq())

$( ".maccordion" ).maccordion( "option", "active", -2  );

array Toggles tabs. Doesn't support negative numbers.

// opens first and second tabs
$( ".maccordion" ).maccordion( "option", "active", [0, 1] );

bool : true Opens all tabs. Only for opening.

$( ".maccordion" ).maccordion( "option", "active", true );

bool : false Closes all tabs.

$( ".maccordion" ).maccordion( "option", "active", false );

string : "toggle" (example) Toggles all tabs.

$( ".maccordion" ).maccordion( "option", "active", "toggle" );

object : jQuery (tab's headers) (example) Toggles tabs.

$( ".maccordion" ).maccordion( { active: false } );

$( ".maccordion" ).maccordion( "option", "active", $( ".maccordion .dattaya-maccordion-header" ) );

effect

string effect : blind

For this to work, JQuery UI Effects Core and an effect one want to use are required. Supports effects that can be used with toggle function. jQuery UI Effects - Examples, Descriptions

$( ".maccordion" ).maccordion( "option", "effect", "fade" );

options

object options : {} (example)

An object/hash including specific options for the effect. Effects and their options

easing

string easing : swing

Effect related. Name of a function to perform easing of the animation. (Easing showcase)

speed

string speed : normal

Duration of the effect.

heightStyle

string heightStyle : auto

false Content panes height will be according to the height of inner content.

auto If set, the highest content part is used as height reference for all other parts.

event

string event : click (example)

Specifies the event used to toggle a maccordion tab.

$( ".maccordion" ).maccordion( "option", "event", "mouseenter click" );

header

string header : "> li > :first-child,> :not(li):even"

Selector for the header element.

icons

object icons : { activeHeader: "ui-icon-triangle-1-s", header: "ui-icon-triangle-1-e" } (example)

Icons to use for headers. (jQueryUI icons)

$( ".maccordion" ).maccordion( {
    icons: {
        activeHeader: "ui-icon-minus",
        header      : "ui-icon-plus"
    } 
} );

Events

create

This event is triggered when a maccordion is created.

$( ".maccordion" ).maccordion({
    create: function(event) { ... }
});

or

$( ".maccordion" ).bind("maccordioncreate": function(event) { 
    ... 
});

beforeActivate

Triggered when the maccordion is about to change.

$( ".maccordion" ).bind("maccordionbeforeActivate": function(event, data) { 
    data.toggled // headers of the content panels that are going to be toggled.
});

activate

Triggered when the maccordion has been changed.

$( ".maccordion" ).bind("maccordionactivate": function(event, data) {
    data.toggled // headers of the content panels that have been toggled.
});

Methods

destroy

Removes the maccordion functionality completely. This will return the element back to its pre-init state.

disable

Disables the maccordion.

enable

Enables the maccordion.

option

Gets or sets any maccordion option. If no value is specified, will act as a getter.

widget

Returns the .dattaya-maccordion element.

refresh

Recomputes heights of tabs, adds/removes tabs.

Adding a tab dynamically (playground):

$( ".maccordion" ).maccordion()
    .append( "<h3><a href=\"#\">Fourth header</a></h3><div>Fourth content</div>" )
    .maccordion( "refresh" );

Removing a tab dynamically (playground):

$( ".maccordion" ).maccordion()
    .children( ":first" )
        .next()
        .andSelf()
            .remove();

$( ".maccordion" ).maccordion( "refresh" );

Theming

Maccordion uses jQuery UI CSS Framework. Use ThemeRoller tool to create and download custom themes that are easy to build and maintain.

If a deeper level of customization is needed, there are widget-specific classes that can be modified (all classes bellow):

<div class="dattaya-maccordion dattaya-maccordion-icons">

    <!--Opened tab-->
    <h3 class="dattaya-maccordion-header dattaya-maccordion-header-active">
        <span class="dattaya-maccordion-header-icon"></span>
        <a href="#" class="dattaya-maccordion-heading">Header</a>
    </h3>
    <div class="dattaya-maccordion-content dattaya-maccordion-content-active">Content</div>

    <!--Closed tab-->
    <h3 class="dattaya-maccordion-header">
        <span class="dattaya-maccordion-header-icon"></span>
        <a href="#" class="dattaya-maccordion-heading">Header</a>
    </h3>
    <div class="dattaya-maccordion-content">Content</div>

</div>

About

Same as jQueryUI Accordion, but allows more than one content panel to be open at the same time

License:GNU General Public License v2.0


Languages

Language:JavaScript 100.0%