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"

m
m (How Tos)
(4 intermediate revisions by the same user not shown)
Line 6: Line 6:
  
 
* [[Create a Scout Dialog]]
 
* [[Create a Scout Dialog]]
 +
* [[Create a Scout Process Service]]
  
 
=== Where do I load data into a TablePage? ===
 
=== Where do I load data into a TablePage? ===
 
* override method '''execLoadTableData ''' where you call an outline service operation that returns a Object[][] field
 
* override method '''execLoadTableData ''' where you call an outline service operation that returns a Object[][] field
 
* Parameter SearchFilter of execLoadTableData contains all additional WHERE clauses (that start with „AND…“) defined in the getConfiguredSearchTerm methods
 
* Parameter SearchFilter of execLoadTableData contains all additional WHERE clauses (that start with „AND…“) defined in the getConfiguredSearchTerm methods

Revision as of 12:11, 10 March 2010

The Eclipse Scout project is a proposed open source project under the Eclipse Technology Project.

Key Concepts

How Tos

Where do I load data into a TablePage?

  • override method execLoadTableData where you call an outline service operation that returns a Object[][] field
  • Parameter SearchFilter of execLoadTableData contains all additional WHERE clauses (that start with „AND…“) defined in the getConfiguredSearchTerm methods

Back to the top