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/HowTo/4.0/Double click a table row to show a form"

< Scout‎ | HowTo‎ | 4.0
(Created page with "{{ScoutPage|cat=HowTo 4.0}} This how-to describes how to add a double click action to a table row. == Using a default menu == #Navigate to the table with the Scout SDK #Op...")
 
(Replaced content with "The Scout documentation has been moved to https://eclipsescout.github.io/.")
 
Line 1: Line 1:
{{ScoutPage|cat=HowTo 4.0}}
+
The Scout documentation has been moved to https://eclipsescout.github.io/.
 
+
This how-to describes how to add a double click action to a table row.
+
 
+
== Using a default menu ==
+
#Navigate to the table with the Scout SDK
+
#Open the Default Menu dropdown at the Scout Object Properties and select the menu you'd like to have executed on a double click.<br>[[Image:DefaultMenu.png]] <br>
+
 
+
This is the recommended and easiest way to execute a menu action on a double click or enter key press. If you don't have a menu but would like to execute code on a double click, you may use the operation execRowAction instead, as described below.
+
 
+
== Using execRowAction ==
+
#Navigate to the table with the Scout SDK
+
#In the Scout Object Properties under Operations add the following method execRowAction()<br>[[Image:ExecRowAction.png]] <br>
+
#Click on the newly added method to show the source code
+
#Implement your code
+
 
+
  @Override
+
  protected void execRowAction(ITableRow row) throws ProcessingException {
+
    //Do whatever you want
+
  }
+

Latest revision as of 07:36, 18 March 2024

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

Back to the top