• Blog
  • Talks
  • Investing
  • About

How to write a custom widget for jQuery Mobile

2011-11-07This post is over 2 years old and may now be out of date

(2 minute read)

I needed to write a custom widget for the jQuery Mobile library but couldn't find any step-by-step documentation on how to do it in the official docs. A search on Google didn't result in any better luck. In the end it turned out to be quite easy to do - I was able to figure it out by looking at the source code of jQuery Mobile and that of the excellent DateBox plugin. In this post I outline the essentials to adding your own custom widget to jQuery Mobile.

Ideally place all your widget code into its own file. Here is the basic code structure:

(function($) {
    $.widget("mobile.mywidget", $.mobile.widget, {
        /** Available options for the widget are specified here, along with default values. */
        options: {
            inline: false,
            mode: "default",
            height: 200
        },
        /** Mandatory method - automatically called by jQuery Mobile to initialise the widget. */
        _create: function() {
            var inputElement = this.element;
            var opts = $.extend(this.options, inputElement.data("options"));
            $(document).trigger("mywidgetcreate");
            ...
            inputElement.after("<button>"
                + inputElement.val()
                + "</button>");
            ...
        },
        /** Custom method to handle updates. */
        _update: function() {
            var inputElement = this.element;
            var opts = $.extend(this.options, inputElement.data("options"));
            $(document).trigger("mywidgetupdate");
            ...
            inputElement.siblings("button").text(inputElement.val());
            ...
        },
        /* Externally callable method to force a refresh of the widget. */
        refresh: function() {
            return this._update();
        }
    });
    /* Handler which initialises all widget instances during page creation. */
    $(document).bind("pagecreate", function(e) {
        $(document).trigger("mywidgetbeforecreate");
        return $(":jqmData(role='mywidget')", e.target).mywidget();
    });
})(jQuery);

In the HTML we can trigger use of the widget as follows:

<input type="text" val="test" data-role="mywidget" data-height="100" data-inline="true">

In the example above our widget is known as a mywidget. We first define the widget and then follow it with a handler for the pagecreate event. This handler ensures that all HTML elements with the attribute data-role="mywidget" are processed. Note that you should use the jqmData filter in case you're not using the standard data- prefix for widget attributes.

Any number of options can be provided to your widget with no restrictions on option type. Per-widget-instance options can be specified as HTML attributes or as dictionary keys if initializing a widget directly in Javascript. Default values for options are provided within the widget itself (as you can see above).

The _create() method gets automatically called by jQuery Mobile when we call mywidget() from the pagecreate handler. This method is responsible for setting up the initial widget display. In the example above we simply add a button after the input element with its label set to the value within the text field.

There is also a refresh() method available for the widget which can be invoked through Javascript as follows:

$(":jqmData(role='mywidget')").mywidget("refresh");

This in turn calls the _update() method which in turn refreshes the button label with the current value of the text input field. You can add as many such methods as you like to the widget. For example, most of the standard jQuery Mobile widgets also come with enable() and disable() methods.

You'll also notice that we trigger widget-specific events within the functions, e.g. mywidgetcreate. These aren't strictly necessary but are useful to include, especially if you want the rest of your application to know when these events take place within the widget.

  • Home
  • Blog
  • Talks
  • Investing
  • About
  • Twitter
  • Github
  • Linked-in
  • Email
  • RSS
© Hiddentao Ltd