Widget Factory | jQuery UI API Documentation (original) (raw)

Description: The base widget used by the widget factory.

QuickNav

Options

Methods

Events

Options

classes

Default: {}

Additional (thematic) classes to add to the widget, in addition to the structural classes. The structural classes are used as keys of this option and the thematic classes are the values. See the _addClass() method for using this in custom widgets. Check out the documentation of individual widgets to see which classes they support.

The primary motivation of this option is to map structural classes to theme classes. In other words, any class prefixed with namespace and widget, like "ui-progressbar-", is considered a structural class. These are always added to the widget. In contrast to that, any class not specific to the widget is considered a theme class. These could be part of jQuery UI's CSS framework, but can also come from other CSS frameworks or be defined in custom stylesheets.

Setting the classes option after creation will override all default properties. To only change specific values, use deep setters, e.g. .option( "classes.ui-progressbar-value", null ).

Code examples:

Initialize a progressbar widget with the classes option specified, changing the theming for the ui-progressbar class:

1 2 3 4 5 $( ".selector" ).progressbar({ "ui-progressbar": "highlight"

Get or set the classes option, after initialization:

1 2 3 4 5 6 7 8 var classes = (".selector").widget("option","classes");//Setter,overrideallclasses( ".selector" ).widget( "option", "classes" );// Setter, override all classes(".selector").widget("option","classes");//Setter,overrideallclasses( ".selector" ).widget( "option", "classes", { "custom-header": "icon-warning" } );// Setter, override just one class$( ".selector" ).widget( "option", "classes.custom-header", "icon-warning" );

disabled

Default: false

Disables the widget if set to true.

Code examples:

Initialize the widget with the disabled option specified:

1 2 3 $( ".selector" ).widget({

Get or set the disabled option, after initialization:

1 2 3 4 5 var disabled = (".selector").widget("option","disabled");( ".selector" ).widget( "option", "disabled" );(".selector").widget("option","disabled");( ".selector" ).widget( "option", "disabled", true );

hide

Default: null

If and how to animate the hiding of the element.

Multiple types supported:

Code examples:

Initialize the widget with the hide option specified:

1 2 3 $( ".selector" ).widget({ hide: { effect: "explode", duration: 1000 }

Get or set the hide option, after initialization:

1 2 3 4 5 var hide = (".selector").widget("option","hide");( ".selector" ).widget( "option", "hide" );(".selector").widget("option","hide");( ".selector" ).widget( "option", "hide", { effect: "explode", duration: 1000 } );

show

Default: null

If and how to animate the showing of the element.

Multiple types supported:

Code examples:

Initialize the widget with the show option specified:

1 2 3 $( ".selector" ).widget({ show: { effect: "blind", duration: 800 }

Get or set the show option, after initialization:

1 2 3 4 5 var show = (".selector").widget("option","show");( ".selector" ).widget( "option", "show" );(".selector").widget("option","show");( ".selector" ).widget( "option", "show", { effect: "blind", duration: 800 } );

Methods

_addClass( [element ], keys [, extra ] )Returns: jQuery (plugin only)

Add classes to an element of the widget.

This provides a hook for the user to add additional classes or replace default styling classes, through the classes option.

It also provides automatic removal of these classes when a widget is destroyed, as long as you're using _addClass(), _removeClass() and _toggleClass() together. This can heavily simplify the implementation of custom _destroy() methods.

Code examples:

Add the ui-progressbar class to the widget's element (this.element). Will also add any additional classes specified through the classes option for the given class.

1 this._addClass( "ui-progressbar" );

Add the demo-popup-header class to the specified element (here referencing this.popup). Will also add any additional classes specified through the classes option for the given class. In addition, it will always add the ui-front class.

1 this._addClass( this.popup, "demo-popup-header", "ui-front" );

Adds the ui-helper-hidden-accessible class to the specified element. Uses null for the keys argument to skip it.

1 this._addClass( this.liveRegion, null, "ui-helper-hidden-accessible" );

_create()Returns: jQuery (plugin only)

The _create() method is the widget's constructor. There are no parameters, but this.element and this.options are already set.

Code examples:

Set the background color of the widget's element based on an option.

1 2 3 this.element.css( "background-color", this.options.color );

_delay( fn [, delay ] )Returns: Number

Invokes the provided function after a specified delay. Keeps this context correct. Essentially setTimeout().

Returns the timeout ID for use with clearTimeout().

Code examples:

Call the _foo() method on the widget after 100 milliseconds.

1 this._delay( this._foo, 100 );

_destroy()Returns: jQuery (plugin only)

The public destroy() method cleans up all common data, events, etc. and then delegates out to _destroy() for custom, widget-specific, cleanup.

Code examples:

Remove a class from the widget's element when the widget is destroyed.

1 2 3 this.element.removeClass( "my-widget" );

_focusable( element )Returns: jQuery (plugin only)

Sets up element to apply the ui-state-focus class on focus.

The event handlers are automatically cleaned up on destroy.

Code examples:

Apply focusable styling to a set of elements within the widget.

1 this._focusable( this.element.find( ".my-items" ) );

_getCreateEventData()Returns: Object

All widgets trigger the create event. By default, no data is provided in the event, but this method can return an object which will be passed as the create event's data.

Code examples:

Pass the widget's options to create event handlers as an argument.

1 2 3 _getCreateEventData: function() {

_getCreateOptions()Returns: Object

This method allows the widget to define a custom method for defining options during instantiation. The user-provided options override the options returned by this method, which override the default options.

Code examples:

Make the widget element's id attribute available as an option.

1 2 3 _getCreateOptions: function() { return { id: this.element.attr( "id" ) };

_hide( element, option [, callback ] )Returns: jQuery (plugin only)

Hides an element immediately, using built-in animation methods, or using custom effects. See the hide option for possible option values.

Code examples:

Pass along the hide option for custom animations.

1 2 3 4 5 this._hide( this.element, this.options.hide, function() { // Remove the element from the DOM when it's fully hidden.

_hoverable( element )Returns: jQuery (plugin only)

Sets up element to apply the ui-state-hover class on hover.

The event handlers are automatically cleaned up on destroy.

Code examples:

Apply hoverable styling to all <div>s within the element on hover.

1 this._hoverable( this.element.find( "div" ) );

_init()Returns: jQuery (plugin only)

Widgets have the concept of initialization that is distinct from creation. Any time the plugin is called with no arguments or with only an option hash, the widget is initialized; this includes when the widget is created.

Note: Initialization should only be handled if there is a logical action to perform on successive calls to the widget with no arguments.

Code examples:

Call the open() method if the autoOpen option is set.

1 2 3 4 5 if ( this.options.autoOpen ) {

_off( element, eventName )Returns: jQuery (plugin only)

Unbinds event handlers from the specified element(s).

Code examples:

Unbind all click events from the widget's element.

1 this._off( this.element, "click" );

_on( [suppressDisabledCheck ] [, element ], handlers )Returns: jQuery (plugin only)

Binds event handlers to the specified element(s). Delegation is supported via selectors inside the event names, e.g., "click .foo". The _on() method provides several benefits of direct event binding:

Code examples:

Prevent the default action of all links clicked within the widget's element.

1 2 3 4 5 this._on( this.element, { "click a": function( event ) {

_removeClass( [element ], keys [, extra ] )Returns: jQuery (plugin only)

Remove classes from an element of the widget.

The arguments are the same as for the _addClass() method, the same semantics apply, just in reverse.

Code examples:

Remove the ui-progressbar class from the widget's element (this.element). Will also remove any additional classes specified through the classes option for the given class.

1 this._removeClass( "ui-progressbar" );

Remove the demo-popup-header class from the specified element (here referencing this.popup). Will also remove any additional classes specified through the classes option for the given class. In addition, it will also remove the ui-front class.

1 this._removeClass( this.popup, "demo-popup-header", "ui-front" );

Remove the ui-helper-hidden-accessible class from the specified element. Uses null for the keys argument to skip it.

1 this._removeClass( this.liveRegion, null, "ui-helper-hidden-accessible" );

_setOption( key, value )Returns: jQuery (plugin only)

Called from the _setOptions() method for each individual option. Widget state should be updated based on changes.

Code examples:

Update a widget's element when its height or width option changes.

1 2 3 4 5 6 7 8 9 _setOption: function( key, value ) { this.element.width( value ); if ( key === "height" ) { this.element.height( value ); this._super( key, value );

_setOptions( options )Returns: jQuery (plugin only)

Called whenever the option() method is called, regardless of the form in which the option() method was called.

Overriding this is useful if you can defer processor-intensive changes for multiple option changes.

Code examples:

Call a resize() method if the height or width options change.

| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | _setOptions: function( options ) { $.each( options, function( key, value ) { that._setOption( key, value ); if ( key === "height" || key === "width" ) { | | ----------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ |

_show( element, option [, callback ] )Returns: jQuery (plugin only)

Shows an element immediately, using built-in animation methods, or using custom effects. See the show option for possible option values.

Code examples:

Pass along the show option for custom animations.

1 2 3 4 5 this._show( this.element, this.options.show, function() { // Focus the element when it's fully visible.

_super( [arg ] [, ... ] )Returns: jQuery (plugin only)

Invokes the method of the same name from the parent widget, with any specified arguments. Essentially .call().

Code examples:

Handle title option updates and call the parent widget's _setOption() to update the internal storage of the option.

1 2 3 4 5 6 _setOption: function( key, value ) { this.element.find( "h3" ).text( value ); this._super( key, value );

_superApply( arguments )Returns: jQuery (plugin only)

Invokes the method of the same name from the parent widget, with the array of arguments. Essentially .apply().

Code examples:

Handle title option updates and call the parent widget's _setOption() to update the internal storage of the option.

1 2 3 4 5 6 _setOption: function( key, value ) { this.element.find( "h3" ).text( value ); this._superApply( arguments );

_toggleClass( [element ], keys [, extra ], add )Returns: jQuery (plugin only)

Toggle classes of an element of the widget.

The arguments are the same as for the _addClass() and _removeClass() methods, except for the additional boolean argument that specifies to add or remove classes.

Unlike jQuery's .toggleClass() method, the boolean add argument is always required.

Code examples:

Toggle the ui-state-disabled class on the widget's element (this.element).

1 this._toggleClass( null, "ui-state-disabled", !!value );

_trigger( type [, event ] [, data ] )Returns: Boolean

Triggers an event and its associated callback.

The option with the name equal to type is invoked as the callback.

The event name is the lowercase concatenation of the widget name and type.

Note: When providing data, you must provide all three parameters. If there is no event to pass along, just pass null.

If the default action is prevented, false will be returned, otherwise true. Preventing the default action happens when the handler returns false or calls event.preventDefault().

Code examples:

Trigger a search event whenever a key is pressed.

1 2 3 4 5 6 7 8 9 10 11 12 this._on( this.element, { keydown: function( event ) { // Pass the original event so that the custom search event has // useful information, such as keyCode this._trigger( "search", event, { // Pass additional information unique to this event value: this.element.val()

destroy()Returns: jQuery (plugin only)

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

disable()Returns: jQuery (plugin only)

Disables the widget.

enable()Returns: jQuery (plugin only)

Enables the widget.

instance()Returns: Object

Retrieves the widget's instance object. If the element does not have an associated instance, undefined is returned.

Unlike other widget methods, instance() is safe to call on any element after the widget plugin has loaded.

option( optionName )Returns: Object

Gets the value currently associated with the specified optionName.

Note: For options that have objects as their value, you can get the value of a specific key by using dot notation. For example, "foo.bar" would get the value of the bar property on the foo option.

option()Returns: PlainObject

Gets an object containing key/value pairs representing the current widget options hash.

option( optionName, value )Returns: jQuery (plugin only)

Sets the value of the widget option associated with the specified optionName.

Note: For options that have objects as their value, you can set the value of just one property by using dot notation for optionName. For example, "foo.bar" would update only the bar property of the foo option.

option( options )Returns: jQuery (plugin only)

Sets one or more options for the widget.

Events

create( event, ui )Type: widgetcreate

Triggered when the widget is created.

Note: The ui object is empty but included for consistency with other events.

Code examples:

Initialize the widget with the create callback specified:

1 2 3 $( ".selector" ).widget({ create: function( event, ui ) {}

Bind an event listener to the widgetcreate event:

1 $( ".selector" ).on( "widgetcreate", function( event, ui ) {} );