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/Concepts/FormData"

(FormData anotation: Remove reference to CREATE EXTERNAL (depreciated))
(Structure of a FormData)
(3 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{ScoutPage|cat=Concepts}}
+
{{ScoutPage|cat=Shared}}
  
FormData is the standard data transfert object for {{ScoutLink|Concepts|Form|forms}} between the {{ScoutLink|Concepts|Client Plug-In|client Plug-In}} and the {{ScoutLink|Concepts|Server Plug-In|server}}.
+
FormData is the standard data transfer object for {{ScoutLink|Concepts|Form|forms}} between the {{ScoutLink|Concepts|Client Plug-In|client Plug-In}} and the {{ScoutLink|Concepts|Server Plug-In|server}}.
  
 
* extends: {{ScoutJavadoc|AbstractFormData|C}}
 
* extends: {{ScoutJavadoc|AbstractFormData|C}}
Line 7: Line 7:
 
== Description ==
 
== Description ==
 
{{note|TODO|Add a description}}
 
{{note|TODO|Add a description}}
Contains a transfert object for each {{ScoutLink|Concepts|Field|field}} and each {{ScoutLink|Concepts|Variable|variable}} of a {{ScoutLink|Concepts|Form|form}}.
+
Contains a transfer object for each {{ScoutLink|Concepts|Field|field}} and each {{ScoutLink|Concepts|Variable|variable}} of a {{ScoutLink|Concepts|Form|form}}.
  
 
=== Usage ===
 
=== Usage ===
Line 32: Line 32:
  
 
== Structure of a FormData ==
 
== Structure of a FormData ==
{{note|TODO|Describe the structure of a FormData. Help to understand what the SDK does}}
+
The FormData depends from the {{ScoutLink|Concepts|Form}} it contains the data. The SDK generate:
 +
* For each {{ScoutLink|Concepts|ValueField}} a <tt>AbstractValueFieldData<T></tt> is generated.
 +
* For each {{ScoutLink|Concepts|TableField}} a {{ScoutLink|Concepts|TableData}} is generated.
 +
* For each form-variable an <tt>AbstractPropertyData<T></tt>
  
 +
The inner-class structure from the composite field (like groupboxes) get lost, unless Group-Box templates are used.
 +
 +
The value fields properties (<tt>getConfiguredMandatory()</tt>, <tt>getConfiguredMaxValue()</tt>, <tt>getConfiguredMaxLength()</tt>...) are mapped to <tt>ValidationRules</tt> conatained in the formData. Those rules are used to redo the basic UI client-side validations on the server.
  
 
== See Also ==
 
== See Also ==

Revision as of 17:23, 12 September 2014

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

FormData is the standard data transfer object for The Scout documentation has been moved to https://eclipsescout.github.io/. between the The Scout documentation has been moved to https://eclipsescout.github.io/. and the The Scout documentation has been moved to https://eclipsescout.github.io/..

Description

Note.png
TODO
Add a description

Contains a transfer object for each The Scout documentation has been moved to https://eclipsescout.github.io/. and each The Scout documentation has been moved to https://eclipsescout.github.io/. of a The Scout documentation has been moved to https://eclipsescout.github.io/..

Usage

  • Used as parameter of the prepareCreate(..), create(..), load(..), store(..) functions in the The Scout documentation has been moved to https://eclipsescout.github.io/..

Access

Note.png
TODO
Add a description and example of how to access to a value, how to know if a value was set


Generation

SDK Support

Note.png
TODO
Add a screenshot


FormData anotation

Structure of a FormData

The FormData depends from the The Scout documentation has been moved to https://eclipsescout.github.io/. it contains the data. The SDK generate:

The inner-class structure from the composite field (like groupboxes) get lost, unless Group-Box templates are used.

The value fields properties (getConfiguredMandatory(), getConfiguredMaxValue(), getConfiguredMaxLength()...) are mapped to ValidationRules conatained in the formData. Those rules are used to redo the basic UI client-side validations on the server.

See Also

Copyright © Eclipse Foundation, Inc. All Rights Reserved.