Dropdown
Dropdown select field. Always full-width.
Type: "selectField"
Dropdown select field. Always full-width.
Props
| Field | Type | Default | Keterangan |
|---|---|---|---|
label | string | "Pilihan" | Label |
placeholder | string | "-- Pilih salah satu --" | Placeholder |
required | boolean | false | Required |
showLabel | boolean | true | Show Label |
fieldIdentifier | string | "selection" | Field Identifier |
Contoh
{
"id": "sel01abc",
"type": "selectField",
"props": {
"fieldIdentifier": "selection",
"label": "Pilihan",
"placeholder": "-- Pilih salah satu --",
"required": false,
"options": [
"Opsi 1",
"Opsi 2",
"Opsi 3"
],
"showLabel": true
}
}