Field
The Field element specifies data to replace the default value for an data element in the DataModel.
Attributes:
Examples
Data used to overwrite Good Afternoon World! with Hello World!
<DataModel name="TheDataModel">
<Block name="Block1">
<String name="Key" value="Output: " />
<String name="Value" value="Good Afternoon World!"/>
</Block>
</DataModel>
<StateModel name="TheState">
<State name="initial">
<Action type="output">
<DataModel ref="TheDataModel" />
<Data name="SampleData">
<Field name="Block1.Value" value="Hello World!" />
</Data>
</Action>
</State>
</StateModel>


