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

m (Category changed)
(Description: add links)
Line 11: Line 11:
 
A page allows the user to browse to a specific point of an application. Pages have a hierarchical organisation: Each page can contains other pages. On the top of the hierarchy is an {{ScoutLink|Concepts|Outline|Outline}} that create the first root pages.
 
A page allows the user to browse to a specific point of an application. Pages have a hierarchical organisation: Each page can contains other pages. On the top of the hierarchy is an {{ScoutLink|Concepts|Outline|Outline}} that create the first root pages.
  
In a typical scout application, pages are represented as node of a tree on the left. It is possible to drill down the page to access the child pages (unless the page is configured as leaf). On the right the content of the page is displayed.
+
In {{ScoutLink|Concepts|Outline based application|outline based applications}}, pages are represented as node of a tree on the left. It is possible to drill down the page to access the child pages (unless the page is configured as leaf). On the right the content of the page is displayed. Instead of the page content, it is possible to display a {{ScoutLink|Concepts|Page Detail Form|detail form}} in this area.
  
 
It is possible to reference them with a {{ScoutLink|Concepts|NodePage|Bookmark}}.
 
It is possible to reference them with a {{ScoutLink|Concepts|NodePage|Bookmark}}.

Revision as of 01:19, 5 August 2012

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

Pages are elements allowing the user to browse through the content of the application.

Note: Typically when you want to create a Page, choose the type of page you want (The Scout documentation has been moved to https://eclipsescout.github.io/. or The Scout documentation has been moved to https://eclipsescout.github.io/.) and extend one of these pages.

Description

A page allows the user to browse to a specific point of an application. Pages have a hierarchical organisation: Each page can contains other pages. On the top of the hierarchy is an The Scout documentation has been moved to https://eclipsescout.github.io/. that create the first root pages.

In The Scout documentation has been moved to https://eclipsescout.github.io/., pages are represented as node of a tree on the left. It is possible to drill down the page to access the child pages (unless the page is configured as leaf). On the right the content of the page is displayed. Instead of the page content, it is possible to display a The Scout documentation has been moved to https://eclipsescout.github.io/. in this area.

It is possible to reference them with a The Scout documentation has been moved to https://eclipsescout.github.io/..

There are two types of pages, depending on the type of content you want to represent, you will probably consider one of the two types:

HG Page.png

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

ScoutTablePage.png

A table page is suitable if you want to represent many elements as rows of a The Scout documentation has been moved to https://eclipsescout.github.io/. (displayed on the right). The table is loaded on event The Scout documentation has been moved to https://eclipsescout.github.io/.. It is possible to create a child for each row with the event The Scout documentation has been moved to https://eclipsescout.github.io/..

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

ScoutNodePage.png

A node page is suitable to represent a single element. The content is a list of child pages created on event The Scout documentation has been moved to https://eclipsescout.github.io/.. The child pages are represented on the left in the tree representation of the page hierarchy. The The Scout documentation has been moved to https://eclipsescout.github.io/. on the right contains also the list of child pages.

See also

Back to the top