Copyright © 2016 Mobilengine Corp. All rights reserved. version: 7.0.4.19927
The list of the child controls of container controls such as popup, chapter, form, row, and cell.
Remarks
Generally a list of zero or more child controls of any type, but cell
may have exactly one child control, and only cell
controls are allowed as the
content
of a row
control.
Sample
<form id='contentSample' menuName='Container controls' platforms='web' xmlns='http://schemas.mobilengine.com/fls/v1'> <chapter title="Check out the content in this one"> <popup title="This is the content of the chapter control"> <table label="This is the content of the popup control" recordset='{SELECT rs.team_score, rs.team_multiplier FROM resultSheet rs}' record="content"> <row> <cell> <numberbox numberFormat='{decimalSeparator: "."}' float="true" number='{content.team_score}'/> </cell> <cell> <numberbox numberFormat='{decimalSeparator: "."}' float="true" number='{content.team_multiplier}'/> </cell> </row> </table> </popup> </chapter> </form>
The form
, chapter
, popup
,
row
, and cell
controls in the sample all have a
content
trait
Because none of the controls in the form above has an identifier, a workflow script running in the Mobilengine Cloud would only be able to access the metadata of its submission.