Skip to main content

Pentaho+ documentation has moved!

The new product documentation portal is here. Check it out now at docs.hitachivantara.com

 

Hitachi Vantara Lumada and Pentaho Documentation

Select

pentaho.visual.action Select

The Select action is a synchronous, data and positioned action that is performed when the user interacts with a visual element, typically by clicking on it.

AMD Module

require(["pentaho/visual/action/Select"], function(Select) { /* code goes here */ });

See also: pentaho.visual.action.spec.ISelect , pentaho.visual.action.spec.ISelectConfig

Extends

Constructor

Name Description
new Select(spec)

Creates a select action given its specification.

Members

Name Description
id
Static
selectionMode : pentaho.visual.action.SelectionMode

Gets or sets the selection mode of this action.

Methods

Name Description
_fillSpec()

Constructor Details

new Select(spec)

Creates a select action given its specification.

Source: javascript/web/pentaho/visual/action/Select.js, line 55

Parameters:
Name Default Value Summary
spec : pentaho.visual.action.spec.ISelect
Optional

A select action specification.

See also: pentaho.visual.action.spec.ISelect , pentaho.visual.action.spec.ISelectConfig

Members Details

id:
Static

Source: javascript/web/pentaho/visual/action/Select.js, line 113

selectionMode: pentaho.visual.action.SelectionMode

Gets or sets the selection mode of this action.

The default value is the value of defaultSelectionMode.

Setting to a Nully value assumes the default value.

Can be set to the name of one of the standard selection modes, SelectionModes, to assume the corresponding selection mode function.

Source: javascript/web/pentaho/visual/action/Select.js, line 81

Methods Details

_fillSpec()

Source: javascript/web/pentaho/visual/action/Select.js, line 102