The action
namespace contains the standard action types used by visualizations.
Source: doc-js/pentaho/visual/action/_namespace.jsdoc, line 16
Child Namespaces
Name | Summary |
spec | The visual.action.spec namespace contains specification interfaces and type definitions. |
Classes
Name | Summary |
Base | The visual.action.Base class is the base class of the actions defined by the Visualization API. |
BaseType | The type class of pentaho.visual.action.Base . |
Execute | The Execute action is a synchronous, data and positioned action that is performed when the user interacts with a visual element, typically by double clicking it. |
ExecuteType | The type class of pentaho.visual.action.Execute . |
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. |
SelectType | The type class of pentaho.visual.action.Select . |
Update | The visual.action.Update class is the class of actions which represent a View being updated. |
UpdateType | The type class of the update action. |
Members
Name | Description |
SelectionModes : function | The SelectionModes enumeration contains the collection of standard selection mode functions. |
Members Details
SelectionModes: function |
The SelectionModes enumeration contains the collection of standard selection mode functions. Properties: Name | Default Value | Description | replace : function | function | Replaces the current selection filter with the provided filter. | toggle : function | function | Adds the input filter to the current selection filter, if it is not already fully contained within the selection filter. Otherwise, removes the input filter from the current selection filter. | add : function | function | Adds the input filter to the current selection filter. | remove : function | function | Removes the input filter from the current selection filter. | Source: javascript/web/pentaho/visual/action/SelectionModes.js, line 36 |