-
Notifications
You must be signed in to change notification settings - Fork 4
TAG
Jeff Olajos edited this page Oct 24, 2024
·
11 revisions
<TAG/> : Widget
The <TAG/> widget is used exclusively by the <TYPEAHEAD/> widget and is defined as a child of the controls <OPTION/>.
<TAG/>'s are used during the <TYPEAHEAD/> search operation to determine if the option matches the criteria specified.
Name | Type | Default | Description | Req |
---|---|---|---|---|
type | string | contains | Specifies the comparison method to use when comparing the <OPTION/>'s value to the value typed by the user. Must be one of contains, startswith, endwith, equal or keyword. | |
value | string | The value used in the comparison. Normally this is value bound to the parents data property. | ||
ignorecase | boolean | true | If the comparison is case sensitive |
Example #1 : a typeahead with tags which match on month number or month staring with the letters typed in.
<TYPEAHEAD id="monthselector" data="MONTHS">
<OPTION value="{data.month}" label="{data.month}">
<TAG value="{data.num}"/>
<TAG value="{data.month}" type="startswith"/>
</OPTION>
</TYPEAHEAD>
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/>