Form
The user interface associated with the “form” tag is produced by the following class template: com.axemble.vdp.ui.framework.composites.xml.XMLForm
.
The provider class to be used must extend com.axemble.vdoc.sdk.providers.BaseFormProvider
.
Tag | Description |
---|---|
fields | Container of “field” elements |
Example
<form name="DEMO" action="action1" label="LG_DEMO" information="LG_DEMO_INFO" provider="com.axemble.education.providers.demo.DemoFormProvider">
<fields>
<field name="fldLabel1" label="LG_LABEL1" ctrl="com.axemble.vdp.ui.core.document.fields.TextBoxField" mandatory="true" />
<field name="fldLabel2" label="LG_LABEL2" ctrl="com.axemble.vdp.ui.core.document.fields.TextBoxField" mandatory="false" />
</fields>
</form>