The collapsibleset plugin has the following options:
collapsedIcon
stringdefault: "plus"
Sets the icon for the headers of the collapsible containers when in a collapsed state. To set the value for all instances of this widget, bind this option to the mobileinit event:
$( document ).bind( "mobileinit", function(){
$.mobile.collapsibleset.prototype.options.collapsedIcon = "arrow-r";
});
This option is also exposed as a data attribute: data-collapsed-icon="arrow-r"
.
expandedIcon
stringdefault: "minus"
Sets the icon for the headers of the collapsible containers when in an expanded state. To set the value for all instances of this widget, bind this option to the mobileinit event:
$( document ).bind( "mobileinit", function(){
$.mobile.collapsibleset.prototype.options.expandedIcon = "arrow-d";
});
This option is also exposed as a data attribute: data-expanded-icon="arrow-d"
.
iconpos
stringdefault: "left"
Positions the icons in the collapsible headers. Possible values: left, right, top, bottom, none, notext.
$( document ).bind( "mobileinit", function(){
$.mobile.collapsibleset.prototype.options.iconpos = "right";
});
This option is also exposed as a data attribute: data-iconpos="right"
.
initSelector
CSS selector stringdefault: ":jqmData(role='collapsible-set')"
This is used to define the selectors (element types, data roles, etc.) that will automatically be initialized as collapsible sets. To change which elements are initialized, bind this option to the mobileinit event:
$( document ).bind( "mobileinit", function(){
$.mobile.collapsibleset.prototype.options.initSelector = ".mycollapsibleset";
});
inset
booleandefault: true
By setting this option to false the collapsibles will get a full width appearance without corners. If the value is false for an individual collapsible container, but that container is part of a collapsible set, then the value is inherited from the parent collapsible set. To set the value for all instances of this widget, bind this option to the mobileinit event:
$( document ).bind( "mobileinit", function(){
$.mobile.collapsible.prototype.options.inset = false;
});
This option is also exposed as a data attribute: data-inset="false"
.
mini
booleandefault: false
Sets the size of the collapsibles to a more compact, mini version. To set the value for all instances of this widget, bind this option to the mobileinit event:
$( document ).bind( "mobileinit", function(){
$.mobile.collapsibleset.prototype.options.mini = true;
});
This option is also exposed as a data attribute: data-mini="true"
.
theme
stringdefault: null, inherited from parent
Sets the color scheme (swatch) for the collapsible set. It accepts a single letter from a-z that maps to one of the swatches included in your theme. To set the value for all instances of this widget, bind this option to the mobileinit event:
$( document ).bind( "mobileinit", function(){
$.mobile.collapsibleset.prototype.options.theme = "a";
});
This option is also exposed as a data attribute: data-theme="a"
.