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

(See Also)
(Replaced content with "{{ScoutPage|cat=Shared}} Moved to new Scout documentation at http://eclipsescout.github.io/6.0/technical-guide.html#lookup-call")
(13 intermediate revisions by 5 users not shown)
Line 1: Line 1:
{{ScoutPage|cat=Concepts}}
+
{{ScoutPage|cat=Shared}}
  
Lookup calls are used by smart {{ScoutLink|Concepts|SmartField|smart fields}} and {{ScoutLink|Concepts|SmartColumn|columns}} to look up single or multiple {{ScoutLink|Concepts|LookupRow|lookup rows}}.
+
Moved to new Scout documentation at http://eclipsescout.github.io/6.0/technical-guide.html#lookup-call
 
+
* extends: {{ScoutJavadoc|LookupCall|C}}
+
 
+
== Description ==
+
{{note|TODO|Add a description}}
+
 
+
== Overview ==
+
 
+
[[Image:LookupCall.png]]
+
 
+
== Properties ==
+
''Defined with {{ScoutLink|Concepts|GetConfigured Methods|getConfiguredXxxxxx()}} methods''.
+
 
+
* {{ScoutProp|Service}}: Defines which service is used to retrieve lookup rows
+
* {{ScoutProp|MasterRequired}}: Defines whether a master value must be set in order to query for multiple lookup rows
+
 
+
 
+
== Methods ==
+
* {{ScoutEvent|getDataByKey}}: Retrieve a single lookup row for a specific key value
+
* {{ScoutEvent|getDataByText}}: Retrieve multiple lookup rows which match a certain  String
+
* {{ScoutEvent|getDataByAll}}: Retrieves all available lookup rows
+
* {{ScoutEvent|getDataByRec}}: This can only be used for hierarchical lookup calls. It retrieves all available sub-tree lookup rows for a given parent
+
 
+
=== Relation CodeType / LookupCall ===
+
 
+
Relation between CodeType and LookupCall
+
* CodeLookupCall
+
 
+
== See Also ==
+
* {{ScoutLink|Concepts|LookupRow|Lookup Row}}
+
* {{ScoutLink|Concepts|Lookup Service|Lookup Service}}
+
* {{ScoutLink|Concepts|Local Lookup Call|Local Lookup Calls}}
+
* {{ScoutLink|Concepts|Shared Plug-In|Shared Plug-In}}
+

Revision as of 11:04, 29 June 2016

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

Moved to new Scout documentation at http://eclipsescout.github.io/6.0/technical-guide.html#lookup-call

Back to the top