Skip to main content

Notice: This Wiki is now read only and edits are no longer 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/Concepts/Form"

m (Description)
(Replaced content with "The Scout documentation has been moved to https://eclipsescout.github.io/.")
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{ScoutPage|cat=Concepts}}
+
The Scout documentation has been moved to https://eclipsescout.github.io/.
 
+
A form is both a model structure of a ui concept known as dialog or view and also a model of a {{ScoutLink|Concepts|Wizard|wizard}} page. Wizard {{ScoutLink|Concepts|Button|buttons}} are added automatically to the main box if missing.
+
 
+
* implements: {{ScoutJavadoc|IForm|I}}
+
* extends: {{ScoutJavadoc|AbstractForm|C}}
+
 
+
== Description ==
+
{{note|TODO|Add a description}}
+
TODO:
+
* Contains {{ScoutLink|Concepts|Field|fields}} and {{ScoutLink|Concepts|Variable|variables}}.
+
* MainBox Field (the main {{ScoutLink|Concepts|GroupBox|GroupBox Field}} at the root of a Form)
+
* {{ScoutLink|Concepts|Form Handler|Handlers}}: start the form with different behaviors (e.g. <code>startNew()</code> and <code>startModify()</code>)
+
 
+
{{ScoutLink|Concepts|Form/Example|Java code of a simple form}} as example.
+
 
+
See also {{ScoutLink|Concepts|Search_Form|SearchForm}}
+
 
+
== Screenshot ==
+
{{note|TODO|Add a screenshot (or remove this section, if there is no screenshot to make)}}
+
 
+
 
+
== Properties ==
+
''Defined with {{ScoutLink|Concepts|GetConfigured Methods|getConfiguredXxxxxx()}} methods''.
+
 
+
{{note|TODO|Add a description of important properties. The idea is not to recreate the JavaDoc of the getConfiguredXxxxxx() methods but to provide explanations, best practice, example... Group the properties by domain.}}
+
 
+
 
+
== Events ==
+
''Defined with {{ScoutLink|Concepts|Exec_Methods|execXxxxxx()}} methods''.
+
 
+
{{note|TODO|Add a description of important events. The idea is not to recreate the JavaDoc of the execXxxxxx() methods but to provide explanations, best practice, example... Group the events by domain.}}
+
 
+
 
+
== See Also ==
+
* {{ScoutLink|Concepts|Field|Form Field}}
+
* {{ScoutLink|Concepts|FormData|FormData}}
+
* {{ScoutLink|Concepts|Wizard|Wizard}}
+
* {{ScoutLink|Concepts|Client Plug-In|Client Plug-In}}
+

Latest revision as of 04:38, 14 March 2024

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

Back to the top