Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Data entry page with a toolbar, a main area and a details area.

 

Code Block
languagehtml/xml
titleData entry page
linenumberstrue
<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>

...