Time Picker ########### .. php:namespace:: Nos .. php:class:: Renderer_Time_Picker | Extends :php:class:`Nos\\Renderer`. | This renderer is used to pick a time. | It's based on `jQuery UI Time Picker `__. .. image:: images/time_picker.png :alt: Time Picker UI Configuration ************* All the `jQuery UI Time Picker options `__ can be used. Methods ******* .. php:method:: renderer($renderer) :param Model $renderer: HTML attributes (``name``, ``class``, ``id``, ``value``, etc.), with a special key ``renderer_options`` :return: The tag with JavaScript to initialise it Displays a time picker in a standalone manner. Example ******* Adding a time picker in a CRUD form configuration: .. code-block:: php '', 'renderer' => 'Nos\Renderer_Time_Picker', 'renderer_options' => array( // jQuery UI Time Picker options ), ); Displaying a time picker: .. code-block:: php 'my_time', 'class' => 'some_class', 'value' => '17:48', 'renderer_options' => array( // jQuery UI Time Picker options ), ));