Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 781 Bytes

range.md

File metadata and controls

24 lines (19 loc) · 781 Bytes

Range field deprecated

This is a HTML5 internal range slider input field.

Please note! This field type is deprecated. Please use the common input field type!

Special properties of field

Property Default Accepted values Description
autocomplete none see doc Indicates whether the value of the control can be automatically completed by the browser.
max none Number Max value (need to use validators.number)
min none Number Min value (need to use validators.number)

Usage

{
	type: "range",
	label: "Rating",
	model: "rating",
	min: 1,
	max: 10
}