TimePicker Customization

19 Apr 20171 minute to read

The TimePicker provides support to display a TimePicker in your web page and allows you to pick a time from it.

Creating TimePicker Widget

The following steps explains you to create a TimePicker widget.

In an HTML page, add a <input> element to configure TimePicker widget.

  • HTML
  • <input type="text" id="time" />
  • JAVASCRIPT
  • // You can render TimePicker control as follows.
        $(function () {
            $('#time').ejTimePicker();
        });

    The following screenshot illustrates you a default TimePicker.