...
Data entry page with a toolbar, a main area and a details area.
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
<page> <id>fintranstypeDetailBody</id> <name>Financial Transaction Type</name> <datapath>name</datapath> <datasources> <datasource> <key>form</key> <classname>com.crm.web.generator.datasource.DTODatasource</classname> </datasource> </datasources> <mainmenu> <components> <component/> </components> </mainmenu> <main> <components> <component/> <component/> ... </components> </main> <details> <tabs> <tab> <id>paymentMethods</id> <name>Allowed Payment Methods</name> <datasourcesetkey>...</datasourcesetkey> <visibilityconditions>...</visibilityconditions> <tipexpression>...</tipexpression> <functioncall> <functions> <function/> </functions> </functioncall> <tabmenu> <components> <component/> <component/> ... </components> </tabmenu> <components> <component/> <component/> ... </components> </tab> <tab> <id>Categories</id> <name>Allowed Categories</name> <datasourcesetkey>categories</datasourcesetkey> <functioncall> <functions> <function/> <function/> </functions> </functioncall> <tabmenu> <components> <component/> <component/> ... </components> </tabmenu> <components> <component/> <component/> ... </components> </tab> </tabs> </details> </page> |
Wizard data entry page.
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
<page> <id>orders/orderTakingDetailBody</id> <name>Order Taking</name> <datapath>order/number</datapath> <datasources> <datasource> <key>form</key> <classname>com.crm.web.generator.datasource.DTODatasource</classname> </datasource> </datasources> <flowcontrol> <messageonsuccess>Order taking created successfully.</messageonsuccess> <linkoncomplete>Click here to go to order detail page|page.do?xml=orders/orderDetailBody&act=itm&jndi=ejb/CRMUIOrder&fc=loadForm&pv0=[[getValue,java.lang.String,order/id]]&pvc=1</linkoncomplete> <completedmenucompid>cmdSave</completedmenucompid> <flowsteps> <flowstep> <name>Customer Information</name> <description>Please specify customer information.</description> ... </flowstep> <flowstep> <name>Order Main Information</name> <description>Please specify Order main information</description> ... </flowstep> <flowstep> <name>Delivery and Billing information</name> <description>Please enter the delivery and billing information.</description> ... </flowstep> <flowstep> <name>Payment Terms</name> <description>Please enter the payment terms.</description> ... </flowstep> <flowstep> <name>Order Preview</name> ... </flowstep> </flowsteps> </flowcontrol> <mainmenu> <components> <component/> </components> </mainmenu> <main> <components> <component/> <component/> ... </components> </main> <details> <tabs> <tab/> <tab/> ... </tabs> </details> </page> |