...
Expand | ||
---|---|---|
| ||
This creates an empty template of a definition file, in which the developer can override current components, or add his own.
...
Code Block | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
| |||||||||
...
<main>
<components>
<component>
<id>cmpUserField2</id>
<name>Home Type</name>
<elements>
<label>
<id>lblUserField2</id>
<value>Home Type</value>
</label>
<textbox>
<id>txtUserField2</id>
<datapath>userField2</datapath>
</textbox>
</elements>
</component>
</components>
</main>
... |
Creating Custom Layout Files
...
This copies the release layout page, and allows the developer to add/remove sections and components, and have complete control over how the page should be viewed. The developer can also choose to copy an existing custom layout instead of the release, or delete any that are no longer in use.
...
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
...
<screenareas>
<screenarea>
<leftscreenarea>
<sections>
<section><id>secMainInformation</id></section>
...
<sections>
<section>
<id>secMainInformation</id>
...
<component><id>cmpUserField2</id></component>
... Code Block | | |||||||
|
The result of this change can be viewed in the newly created custom data entry page.
...