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/Layout"

(Abstract)
(Composite Field Properties)
Line 18: Line 18:
 
=== Composite Field Properties ===
 
=== Composite Field Properties ===
 
The composite field properties define the layout on a certain composite field.
 
The composite field properties define the layout on a certain composite field.
 +
 +
{|{{BMTableStyle}}
 +
|-{{BMTHStyle}}
 +
! Config method
 +
! Meaning
 +
|-
 +
| getConfiguredGridX || desc
 +
|-
 +
|-
 +
| getConfiguredGridY || desc
 +
|-
 +
|-
 +
| getConfiguredGridW || desc
 +
|-
 +
|-
 +
| getConfiguredGridH || desc
 +
|-
 +
|-
 +
| getConfiguredGridWeightX || desc
 +
|-
 +
|-
 +
| getConfiguredGridWeightY || desc
 +
|-
 +
|-
 +
| getConfiguredGridUseUiWidth || desc
 +
|-
 +
|-
 +
| getConfiguredGridUseUiHeight || desc
 +
|-
  
 
=== Form Field Properties ===
 
=== Form Field Properties ===

Revision as of 09:31, 2 April 2014

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

The Concepts pages define concepts and elements used in the Eclipse Scout Framework.

Abstract

Scout provides a generic layout on any composite fields as:

The layout is mainly related to a grid layout with some additional features as weight related resize behavior and some optimizations reducing the used space. There are currently a horizontal and a vertical implementation of the grid layout.

Layout properties

Composite Field Properties

The composite field properties define the layout on a certain composite field.

Form Field Properties

The form field properties define how a certain form field has to be layout in its container.

Layout Inspector

Config method Meaning
getConfiguredGridX desc
getConfiguredGridY desc
getConfiguredGridW desc
getConfiguredGridH desc
getConfiguredGridWeightX desc
getConfiguredGridWeightY desc
getConfiguredGridUseUiWidth desc
getConfiguredGridUseUiHeight desc

Back to the top