Skip to main content
Hitachi Vantara Lumada and Pentaho Documentation

Move

pentaho.type.action Move

The Move class describes the primitive operation that changes an element position inside a list.

This type of change is always part of a pentaho.type.action.ListChangeset.

AMD Module

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

Extends

Constructor

Name Description
new Move(elem, indexOld, indexNew)

Creates an instance.

Members

Name Description
id
Static
type : string

Gets the type of change.

Methods

Name Description
_apply()

Constructor Details

new Move(elem, indexOld, indexNew)

Creates an instance.

Source: javascript/web/pentaho/type/action/Move.js, line 54

Parameters:
Name Default Value Summary
elem : Array.<pentaho.type.Element>

The element to be moved in the list.

indexOld : number

The old index of the element in the list.

indexNew : number

The new index of the element in the list.

Members Details

id:
Static

Source: javascript/web/pentaho/type/action/Move.js, line 100

type: string

Gets the type of change.

Source: javascript/web/pentaho/type/action/Move.js, line 90

Default Value: "move"

See also: pentaho.type.action.Change#type

Methods Details

_apply()

Source: javascript/web/pentaho/type/action/Move.js, line 95