Versions Compared

Key

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

...

Expand
titleAdding New Data Entry Layout Components
Image Removed
Code Block
themeEclipse
languagexml
titleLayout
...
 
	<screenareas>
		<screenarea>
			<leftscreenarea>
				<sections>
					<section><id>secMainInformation</id></section>
 
					...
 
	<sections>	
		<section>
			<id>secMainInformation</id>


			...
 
				<component><id>cmpUserField2</id></component>
 
...
Code Block
themeEclipse
languagexml
titleDefinition
...
 
	<main>
		<components>
			<component>
				<id>cmpUserField2</id>
				<name>ContPrefDateTime2</name>
				<elements>
					<label>
						<id>lblUserField2</id>
						<value>Home Type</value>
					</label>
					<textbox>
						<id>txtUserField2</id>
						<datapath>userField2</datapath>
					</textbox>
				</elements>
			</component>
		</components>
	</main>
 
...

 

The result of this change can be viewed in the newly created custom data entry page.

...