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

(Created page with "{{ScoutPage|cat=Shared}} TablePageData is the standard data transfert object for {{ScoutLink|Concepts|TablePage}} between the {{ScoutLink|Concepts|Client Plug-In|client Plug-...")
 
(Replaced content with "The Scout documentation has been moved to https://eclipsescout.github.io/.")
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{ScoutPage|cat=Shared}}
+
The Scout documentation has been moved to https://eclipsescout.github.io/.
 
+
TablePageData is the standard data transfert object for {{ScoutLink|Concepts|TablePage}} between the {{ScoutLink|Concepts|Client Plug-In|client Plug-In}} and the {{ScoutLink|Concepts|Server Plug-In|server}}.
+
 
+
* extends: {{ScoutJavadoc|AbstractTablePageData|C}}
+
 
+
== Description ==
+
 
+
{{important|Required version|The API described here requires version 3.10.0 or bigger.}}
+
 
+
{{note|TODO|Add a description}}
+
 
+
=== Usage ===
+
* A page date is the typical return value for the methods of the {{ScoutLink|Concepts|Outline Service|outline services}}.
+
* Importation in {{ScoutLink|Concepts|TablePage}} during the {{ScoutEvent|LoadData}} event. Here an example:
+
 
+
<source lang="java">
+
@Override
+
protected void execLoadData(SearchFilter filter) throws ProcessingException {
+
  PersonSearchFormData formData = (PersonSearchFormData) filter.getFormData();
+
  if (formData == null) {
+
    formData = new PersonSearchFormData();
+
  }
+
 
+
  PersonTablePageData pageData = SERVICES.getService(IStandardOutlineService.class).getPersonTableData(formData);
+
  importPageData(pageData);
+
}
+
</source>
+
 
+
== Generation ==
+
=== SDK Support ===
+
* Generation of TablePageData with the {{ScoutLink|SDK|Explorer_View|Explorer View}}
+
 
+
{{note|TODO|Add a screenshot}}
+
 
+
=== PageData anotation ===
+
{{ScoutJavadoc|PageData|A}} FormData annotation
+
 
+
{{note|TODO|Add a description}}
+
 
+
== See Also ==
+
* {{ScoutLink|Concepts|TablePage}}
+
* {{ScoutLink|Concepts|Outline Service}}
+
* {{ScoutLink|Concepts|Shared Plug-In}}
+

Latest revision as of 05:59, 14 March 2024

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

Back to the top