Name (attribute of param)
From JRapid
A parameter maps a string with a value. The value which a param maps is usually the value of a property in a form which can be collected using an FPath expression.
JRapid elements like subsets and filters specify EL expressions which can recieve params.
Example
- Passing a value inside a form to an EL expression:
<property label="Comments" labelposition="top" name="comments" type="text">
<disabledcondition expr="statusParam.name != 'Closed'">
<param entity="CompanyStatus" name="statusParam" value="status"/>
</disabledcondition >
</property>
"expr": EL expression
"value": FPath expression.
