Hi. So I've created a form for ECM UI, where the user has to enter information. The xml code is pasted below My next interest is to create a button component upon whose clicking the entered information gets stored into a table. Also attached below is a snapshot of the form created. Looking forward to your help. Regards ------------------------------------------------------------------------------------------------------------------------------------------------------ <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE ui-definition SYSTEM "uiDefinition.dtd"> <ui-definition id="viewer" type="viewer"> <title></title> <screen id="main"> <app-title><message key="app.title"/></app-title> <title><message key="field.fcf.my.cases"/></title> <column-layout> <column> <field name="case.FIRST_NAME" type="string"> <label separator-visible="true"><message key="first.name"/></label> </field> <field name="TEMP.LAST_NAME" type="string"> <label separator-visible="true"><message key="last.name"/></label> </field> <field name="TEMP.BRANCH" type="dropdown" values="GetLabelValues('RT_CASE_TYPE')"> <label separator-visible="true"><message key="branch.type"/></label> </field> <field name='TEMP.product4' type='checkbox' logic="OR" values="GetLabelValues('RT_ACCOUNT')" > <label><message key='Product.Type4'/></label> </field> </column> <column> <field name="TEMP.ACC_OPN_DT" type="date"> <label><message key="account.open.date"/></label> </field> <field name="TEMP.ACC_CL_DT" type="date"> <label><message key="account.close.date"/></label> </field> <field type="component" component-name="LabelComponent"> <label><message key="product.info"/></label> </field> <field name='TEMP.EMPLOYEE' type='boolean'> <label><message key='Product.Type1'/></label> </field> <field name='TEMP.RELATED' type='boolean'> <label><message key='Product.Type2'/></label> </field> </column> </column-layout> </screen> </ui-definition> -------------------------------------------------------------------------------------------------------------------------------------------------------------------------
... View more