Panel | ||
---|---|---|
| ||
This section describes how custom data entry pages are created.
What does this section cover?
|
Create Custom Data Entry Pages
For an introduction to data entry pages, go to Data Entry PagesDeveloping data entry pages (Deprecated).
Create New Data Entry Pages
To create a new data entry page, you need to create two XML files: a layout file and a definition file , in your custom projects directory under <custom_project>/web/WebContent/pages/dataEntry/<module_name>.
...
As you can see in the example above, for the name, alternative code and log information components, generic components were used. For more information on generic components and how to use them, go to Use Generic Components (Deprecated).
Customise Existing Data Entry Pages
To extend the system's release functionality, by adding new components to an existing data entry page, both custom data entry definition and layout files must be created. To extend the system's release functionality, by just changing the layout of the existing components, only a custom data entry layout file must be created. Both definition and layout files must be created under <custom_project>/web/WebContent/pages/dataEntry/<module_name>.
...
Ui expand | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||
|
Templates Properties File
The templates properties file (templates.properties) is used for defining the default data entry layout file, generally or per unitcommunity, when more than one layout files exist per data entry definition page, and must be created under <custom_project>/web/WebContent/pages/dataEntry.
To define the default layout of a data entry page, you have to add the following line to templates.properties file: <definition_page_file_path>~mp~defaultpath>~organisation~default=<directory_name>/<layout_filename>.xml
To define the default layout of a data entry page for a specific unitcommunity, you have to add the following line to templates.properties file: <definition_page_file_path>~channeltypes~<unit~community~<community_id>=<directory_name>/<layout_filename>.xml
...
If no default layout page is specified for a specific unitcommunity, the default layout page will be used by the system. If no default layout page is specified either, the release layout page will be used.
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
contactinfo/contactInformation~mp~defaultcontactInformation~organisation~default=contactinfo/contactInformationCustomlayout.xml contactinfo/contactInformation~channeltypes~37AABC37AAF75489FC89EEA94C59024DcontactInformation~community~37AABC37AAF75489FC89EEA94C59024D=contactinfo/contactInformationCustom2layout.xml |
...