-
Notifications
You must be signed in to change notification settings - Fork 4
Menu
Jeff Olajos edited this page Mar 14, 2023
·
42 revisions
The MENU widget displays a responsive full screen tiled menu.
- Overview
- Menu Attributes
- Item Attributes
- Usage
- Ideals:
- Restrictions
- Examples
- Other Widgets You May Find Useful
Attributes :: VisibleWidget (inherited attributes)
| Name | Type | Req |
|---|---|---|
| title | string | |
| data | string | |
| color | Color |
| Name | Type | Req |
|---|---|---|
| url | URL | ✔️ |
| title | string | |
| subtitle | string | |
| icon | icon |
You can manually create each MENU's ITEM child(ren) or you can iterate through a single ITEM, binding the values from a Datasource assigned to MENUs data= attribute.
- Use a
MENUwhen you want to easily build a dedicated way to navigate to various unrelated sections of the application, oftenMENUis utilized right at the beginning of an application or within a modal that the user opens when they wish to navigate elsewhere.
-
MENUmay only haveITEMchildren. - Opening an internal template with the relative url will add it to the Navigation stack but a full url will open in your device browser.
<FML>
<!-- Image Background -->
<!-- <IMAGE url="/resources/images/menu-bg.png" height="100%"/> -->
<MENU color="transparent">
<ITEM title="Edit" subtitle="Menu" icon="build" url="main.xml"/>
<ITEM title="Settings" subtitle="Menu" icon="settings" url="main.xml"/>
<ITEM title="Google" subtitle="Link" icon="insert_link" url="https://google.com"/>
</MENU>
</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