-
Notifications
You must be signed in to change notification settings - Fork 4
SELECT
Jeff Olajos edited this page Oct 23, 2024
·
1 revision
<SELECT/> : FormField
The <SELECT/> widget creates a dropdown that can contain hardcoded OPTION values. This allows the user to select from a list of values, this list can be searchable with typeahead=true and can take custom values if inputenabled=true too. The selection values can be hardcoded OPTION `s (fig-a) or populated by a Datasource (fig-b)
- If populating the <SELECT/> from a Datasource using
data=ensure to have exactly oneOPTIONchild with bindings matching the data.
| Name | Type | Default | Description | Req |
|---|---|---|---|---|
| data | string | null | The Datasource that populates the OPTION
|
|
| width | int | null | The width of the select. The default is the size of the largest OPTION child |
|
| addempty | bool | true | Adds an empty value at the start of the list provided from a Datasource |
A SELECT populated with hardcoded OPTIONs
<FML>
<ROW center="true">
<SELECT id="pineappleonpizza">
<OPTION value="true" label="Yes"/>
<OPTION value="false" label="No"/>
</SELECT>
</ROW>
</FML>Framework Markup Language is an open source programming language created by AppDaddy Software Solutions Inc. FML and is licensed under a fair source license agreement and is maintained by a community of developers.
- Quick Start
- Widget Structure
- Layout Basics
- Config
- Navigation
- Authentication
- Server Configuration
- Offline Use
- Resource Guides
-
<FML/>
- <BOX/>
- <CHART/>
- <COLUMN/>
- <DRAWER/>
- <FOOTER/>
- <FORM/>
- <GRID/>
- <HEADER/>
- <LIST/>
- <MAP/>
- <WINDOW/>
- <PAGER/>
- <ROW/>
- <SCROLLER/>
- <SPLITVIEW/>
- <STACK/>
- <TABLE/>
- <TABVIEW/>
- <TREEVIEW/>
- <WEBVIEW/>
Important Concepts