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

Scout/HowTo/5.0/Double click a table row to show a form

< Scout‎ | HowTo‎ | 5.0
Revision as of 08:50, 9 April 2015 by Ssw.bsiag.com (Talk | contribs) (Created page with "{{ScoutPage|cat=HowTo 5.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...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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

  1. Navigate to the table with the Scout SDK
  2. Open the Default Menu dropdown at the Scout Object Properties and select the menu you'd like to have executed on a double click.
    DefaultMenu.png

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

  1. Navigate to the table with the Scout SDK
  2. In the Scout Object Properties under Operations add the following method execRowAction()
    ExecRowAction.png
  3. Click on the newly added method to show the source code
  4. Implement your code
  @Override
  protected void execRowAction(ITableRow row) throws ProcessingException {
    //Do whatever you want
  }

Back to the top