dropDown
Deprecated
Use selectBox instead
Replace with
selectBox(model, boxItemVisualizer, listItemVisualizer, config)
Creates a SelectBox control that is bound to a Field. This control lets a user select a single item within a list. It is similar to radioList, except it DOES set a default value and its field is therefore ALWAYS Valid.
This control is useful when a meaningful default exists for an option list.
Parameters
is the type of the bounded field
for the select box
used to render the drop-down's box item
used to render items in the drop-down's list
used to control the resulting component
Deprecated
Use selectBox
Replace with
selectBox(first, *rest, boxItemVisualizer = boxItemVisualizer, listItemVisualizer = listItemVisualizer, config = config)
Creates a SelectBox control that is bound to a Field. This control lets a user select a single item within a list. It is similar to radioList, except it DOES set a default value and its field is therefore ALWAYS Valid.
This control is useful when a meaningful default exists for an option list.
Parameters
is the type of the bounded field
item in the list
of the items in the list
used to render the drop-down's box item
used to render items in the drop-down's list
used to control the resulting component
Deprecated
Use selectBox
Replace with
selectBox(first, *rest, label = label, config = config)
Creates a SelectBox control that is bound to a Field. This control lets a user select a single item within a list. It is similar to radioList, except it DOES set a default value and its field is therefore ALWAYS Valid.
This control is useful when a meaningful default exists for an option list.
Parameters
is the type of the bounded field
item in the list
of the items in the list
used to render the drop-down's box and list items
used to control the resulting component
Deprecated
Use selectBox
Replace with
selectBox( first, *rest, boxItemVisualizer = boxItemVisualizer, listItemVisualizer = listItemVisualizer, unselectedBoxItemVisualizer = unselectedBoxItemVisualizer, unselectedListItemVisualizer = unselectedListItemVisualizer, config = config)
Creates a SelectBox control that is bound to a Field. This control lets a user select a single item within a list. It is similar to radioList, in that it DOES NOT set a default value and its field is Invalid if no initial value is bound to it. The control actually has an "unselected" state when it is invalid.
Parameters
is the type of the bounded field
item in the list
of the items in the list
used to render the drop-down's box item
used to render items in the drop-down's list
used to render the drop-down's box item when it is unselected
used to render the "unselected item" in the drop-down's list
used to control the resulting component
Deprecated
Use selectBox
Replace with
selectBox( first, *rest, label = label, unselectedLabel = unselectedLabel, config = config)
Creates a SelectBox control that is bound to a Field. This control lets a user select a single item within a list. It is similar to radioList, in that it DOES NOT set a default value and its field is Invalid if no initial value is bound to it. The control actually has an "unselected" state when it is invalid.
Parameters
is the type of the bounded field
item in the list
of the items in the list
used to render the drop-down's items
used to render the item that represents the "unselected" state
used to control the resulting component