Skip to main content
Skip table of contents

"DoubleClick" Action

The DoubleClick action is created via the <DoubleClickAction/> element and can, for instance, call up a Technical Process or an external website. The DoubleClick action can only be used for desktop versions.

Note:

The DoubleClick action can be used in the following components:

  • List Component

  • Grid Component (for columns with deactivated editing)

In addition to the standard attributes for Actions, the <DoubleClickAction/> element can have the following attributes:

Attribute

Description

externalLink 

Allows the navigation to an external website by defining an external link.

  • Data binding possible

Possible values: String (URL)

Note:

In detail components, the external link can also be provided by a Technical Process. A Technical Process (attribute process) that contains the external link in its response must be linked to the action:

CODE
<Ok externalLink="http://www.google.de" />

externalLinkTarget

Defines whether the link (externalLink) is opened within the same tab or a new tab.

Possible values:

  • same: The link is opened in the same tab.

  • new: The link will open in a new tab.

url

Allows the navigation to an external website by specifying an external link.

  • Data binding

Note:

Please note that the default attribute displayName is not available for the <DoubleClickAction/> element.

Example

CODE
<DetailComponent xmlns="http://softproject.de/webapp/1.0" process="loadTreeViewValues.wrf">
   <Properties>
      <Property name="TV_List" type="List">
         <Property name="id" type="String"/>
         <Property name="pid" type="String"/>
         <Property name="entryName" type="String"/>
      </Property>
   </Properties>
   <FlowLayout>
      <Header value="TreeView in FlowLayout"/>
      <FlowLayout>
         <TreeView objectList="#TV_List"
                   id="#id"
                   parentId="#pid"
                   title="#entryName">
            <SelectAction externalLink="https://www.google.de/"/>
            <DoubleClickAction externalLink="https://www.softproject.de/"/>
         </TreeView>
      </FlowLayout>
   </FlowLayout>
</DetailComponent>

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.