-
-
Notifications
You must be signed in to change notification settings - Fork 9.4k
Added some jelly documentation for step for numbers
#10983
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 2 commits
9a3e329
4ba6911
d20ba68
c224093
90061e5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -48,7 +48,7 @@ THE SOFTWARE. | |
| </st:attribute> | ||
| <st:attribute name="min"> <![CDATA[ | ||
| The minimum of the @value. This becomes the @min of the <input> tag. | ||
| This will work only @clazz is 'number', 'number-required', 'non-negative-number-required', | ||
| This will work only if @clazz is 'number', 'number-required', 'non-negative-number-required', | ||
| 'positive-number', 'positive-number-required'. | ||
| If specified, the @value should be greater than this value, or errors will be rendered under the text field. | ||
| If this value contains non-digit characters, it will not work. | ||
|
|
@@ -57,13 +57,19 @@ THE SOFTWARE. | |
| </st:attribute> | ||
| <st:attribute name="max"> <![CDATA[ | ||
| The maximum of the @value. This becomes the @max of the <input> tag. | ||
| This will work only @clazz is 'number', 'number-required', 'non-negative-number-required', | ||
| This will work only if @clazz is 'number', 'number-required', 'non-negative-number-required', | ||
| 'positive-number', 'positive-number-required'. | ||
| If specified, the @value should be less than this value, or errors will be rendered under the text field. | ||
| If this value contains non-digit characters, it will not work. | ||
| If @min is specified and @min is greater than this value, both @min and @max will not work. | ||
| ]]> | ||
| </st:attribute> | ||
| <st:attribute name="step"> | ||
| The step size of the @value. The default is 1. | ||
| This will work only if @clazz is 'number', 'number-required', 'non-negative-number-required', | ||
| 'positive-number', 'positive-number-required'. | ||
|
||
| If this value contains non-digit characters, it will not work. | ||
| </st:attribute> | ||
| <!-- Tomcat doesn't like us using the attribute called 'class' --> | ||
| <st:attribute name="clazz"> | ||
| Additional CSS class(es) to add (such as client-side validation clazz="required", | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.