Skip to content
Snippets Groups Projects
Commit 9d366bf2 authored by Manon Bourgognon's avatar Manon Bourgognon
Browse files

solid-form-time widget addition

parent 39758c34
No related branches found
No related tags found
No related merge requests found
...@@ -84,12 +84,12 @@ Attributes ...@@ -84,12 +84,12 @@ Attributes
``min-[field]`` ``min-[field]``
~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~
Add this attribute for the field ``[field]`` to define its minimum value. Add this attribute for the field ``[field]`` to define its minimum value.
It works only with a ``solid-form-number`` widget. It works only with ``solid-form-number`` and ``solid-form-time`` widgets.
``max-[field]`` ``max-[field]``
~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~
Add this attribute for the field ``[field]`` to define its maximum value. Add this attribute for the field ``[field]`` to define its maximum value.
It works only with a ``solid-form-number`` widget. It works only with ``solid-form-number`` and ``solid-form-time`` widgets.
``pattern-[field]`` ``pattern-[field]``
~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~
...@@ -127,6 +127,13 @@ Attributes ...@@ -127,6 +127,13 @@ Attributes
If the attribute is defined, each change in an input will trigger a request to update the resource. If the attribute is defined, each change in an input will trigger a request to update the resource.
This attribute works only when editing resources, not creating them. This attribute works only when editing resources, not creating them.
``step-[field]``
~~~~~~~~~~~~~~~~
*Available from version 0.16*
Add this attribute for the field ``[field]`` to define the stepping interval number to use as constraint validation . Its value is given in seconds (default value is 60).
It works only with a ``solid-form-time`` widget.
Widgets Widgets
------- -------
By default, the widget used is ``<solid-form-label-text>``. Cf the By default, the widget used is ``<solid-form-label-text>``. Cf the
......
...@@ -58,6 +58,7 @@ Name of the template to use. Available templates: ...@@ -58,6 +58,7 @@ Name of the template to use. Available templates:
- ``image``: Works like ``file`` but allow only images in the input, and create a preview of the image when selected by the user. - ``image``: Works like ``file`` but allow only images in the input, and create a preview of the image when selected by the user.
- ``color``: set ``value`` in an ``<input>`` of type ``color``. - ``color``: set ``value`` in an ``<input>`` of type ``color``.
- ``password``: set ``value`` in an ``<input>`` of type ``password``. - ``password``: set ``value`` in an ``<input>`` of type ``password``.
- ``time``: set ``value`` in an ``<input>`` of type ``time``. The format value is ``hh:mm``.
- ``set`` - ``set``
......
...@@ -231,6 +231,10 @@ List of attributes (core framework) ...@@ -231,6 +231,10 @@ List of attributes (core framework)
~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~
* :ref:`solid-form-search <solid-form-search>` * :ref:`solid-form-search <solid-form-search>`
``step-[field]``
~~~~~~~~~~~~~~~~
* :ref:`solid-form <solid-form>`
``(search-fields)`` deprecated ``(search-fields)`` deprecated
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* :ref:`filter-mixin <filter-mixin>` * :ref:`filter-mixin <filter-mixin>`
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment