Input combo
Displays an input field depending on the type property.
Input combos have the following properties shared across types:
Attribute | Description | Values |
---|---|---|
type | The type of input field |
|
id | A unique identifier to access this field | Any user-defined string |
label | The text label that will be visible next to the input | Any user-defined string |
description | The small text description below the label, used to hint the user about the input | Any user-defined string |
placeholder | The placeholder text shown inside the input field | Any user-defined string |
shape | Used to align the label and the input field |
|
value | Used to set a default value. | Depends on the inputcombo type. Check each section. |
When using the value
property, it will overrider the placeholder
, thus, displaying the default set with it instead of the placeholder.
Examples
Last updated