Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Scout/HowTo/4.0/Creating a template"

< Scout‎ | HowTo‎ | 4.0
m
(Replaced content with "The Scout documentation has been moved to https://eclipsescout.github.io/.")
 
Line 1: Line 1:
{{ScoutPage|cat=HowTo 4.0}}
+
The Scout documentation has been moved to https://eclipsescout.github.io/.
 
+
This how-to describes how to create and use a template
+
 
+
= Creating the template<br> =
+
 
+
#Create a GroupBox in a form
+
#Add form fields to the GroupBox and set their properties<br> [[Image:TemplateCreationGroupBox.png]]<br>[[Image:TemplateCreationFields.png]]
+
#Right click on the GroupBox and choose "Create template..."<br> [[Image:TemplateCreationCreateTemplate.png]]
+
#Define the template name (or accept the default proposal)<br>Make sure the two checkboxes are selected<br> [[Image:TemplateCreationTemplateName4.0.PNG]]
+
 
+
 
+
 
+
= Using the template =
+
 
+
The new template should now be listed under the Templates section in the client sub-project:
+
 
+
[[Image:TemplateCreationTemplateList.png]]
+
 
+
When adding new form fields, the new field should now be available:
+
 
+
[[Image:TemplateCreationUsingTemplate.png]]
+
 
+
In order to access the fields of a template in an SQL statement, use dot-notation (access to the fields works, even if auto-completion does not).
+
 
+
    SQL.selectInto("SELECT STREET, STREET2, ZIP, TOWN " +
+
                  "FROM ADDRESS " +
+
                  "WHERE ADDRESS_NO =&nbsp;:addressNo " +
+
                  "INTO&nbsp;:addressBox.street,&nbsp;:addressBox.street2,&nbsp;:addressBox.plz,&nbsp;:addressBox.town ",
+
                  formData);
+

Latest revision as of 07:36, 18 March 2024

The Scout documentation has been moved to https://eclipsescout.github.io/.

Back to the top