Merge "Added new supported settings type "number" description"

This commit is contained in:
Jenkins 2016-04-06 22:46:59 +00:00 committed by Gerrit Code Review
commit e19ad34040
1 changed files with 9 additions and 4 deletions

View File

@ -50,6 +50,7 @@ structure includes the following attributes::
The following types are supported:
* *text* - single line input
* *number* - number input
* *password* - password input
* *textarea* - multiline input
* *checkbox* - multiple-options selector
@ -69,10 +70,14 @@ structure includes the following attributes::
* *values* list is needed for settings of "radio" or "select" type to declare
its possible values. Options from "values" list also support dependencies
and conflcits declaration.
* *min* is actual for settings of "text_list" or "textarea_list" type
to declare a minimum input list length for the setting
* *max* is actual for settings of "text_list" or "textarea_list" type
to declare a maximum input list length for the setting
* *min* is used for setting the "number", "text_list" or "textarea_list" type.
For the "number" type, "min" declares the minimum input number value.
For the "text_list" and "textarea_list" types, it declares the minimum list length for the
setting.
* *max* is used for setting the "number", "text_list", or "textarea_list" type.
For the "number" type, "max" declares the maximum input number value.
For the "text_list" and "textarea_list" types, it declares the maximum list length for the
setting.
.. _restrictions: