-
Notifications
You must be signed in to change notification settings - Fork 4
BLOB
Jeff Olajos edited this page Nov 29, 2024
·
10 revisions
<BLOB/>: <VARIABLE/>
The <BLOB/> widget holds a value. Unlike <VAR/>, the <BLOB/> widget does not decode bindings. This is useful when the developer wishes to pass the actual binding string to a function (ex. forEach()) rather than its interpreted value.
<FML id="f1" title="STACK (example2)" linkable="true" keywords="drag,resize">
<POS top="20" left="20">
<BUTTON onclick="f1.addchild({v2})" type="outline" padding="10">
<ICON icon="add"/>
<TEXT value="Add Icon"/>
</BUTTON>
</POS>
<POS top="50" left="20">
<BUTTON onclick="f1.addchild({v1})" type="outline" padding="10">
<ICON icon="add"/>
<TEXT value="Add Box"/>
</BUTTON>
</POS>
<BLOB id="v1">
<value>
<POS id="p2" top="10" left="10" draggable="true" scope="s1">
<BOX id="b2" expand="false" resizeable="true" bordercolor="red" width="100" height="20" color="transparent" center="true">
<TEXT value="({p2.viewx},{p2.viewy}) , ({p2.viewwidth},{p2.viewheight})" size="12" margin="10"/>
</BOX>
</POS>
</value>
</BLOB>
<BLOB id="v2">
<value>
<POS id="i2" top="10" left="10" draggable="true" scope="s1">
<ICON id="b2" icon="save" resizeable="true" size="24" color="red"/>
</POS>
</value>
</BLOB>
</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/>