BiOlapGridDragEvent

This event is used for events related to some drag and drop inside the OLAP grid.

This class extends BiDragEvent and therefore all methods and fields available for BiDragEvent are also available for BiOlapGridDragEvent .

Constructor

new BiOlapGridDragEvent ( sType,oDragEvent )

Parameters

Name Type Optional Default Descripton
sType String The name/type of the event
oDragEvent BiDragEvent The drag and drop event this is based on

Properties

Name Type get set Descripton
destinationInfo BiOlapGridCellInfo checked The destionation cell info
relative Number checked The relative postion to the destionation cell. This is either BiOlapGridDragEvent.BEFORE, BiOlapGridDragEvent.OVER or BiOlapGridDragEvent.AFTER.
sourceInfo BiOlapGridCellInfo checked The source cell info

Methods

Name Description
initEvent Initializes a few fields

Events

None.

Static Methods

None.

Static Fields

Name Type Descripton
AFTER Number Whether the relative positon is after the destination cell info
BEFORE Number Whether the relative positon is before the destination cell info
OVER Number Whether the relative positon is over (not before or after) the destination cell info

Remarks

Method Details

initEvent

Initializes a few fields

Syntax

object.initEvent
 (
 oSrc,oDst
 [
 ,nRelative
 ]
 
 )
 

Parameters

Name Type Optional Default Descripton
oSrc BiOlapGridCellInfo The cell info for the start cell in the OLAP grid
oDst BiOlapGridCellInfo The destination cell info for the OLAP grid
nRelative Number checked Number describing where the drop/over occured.

Return Type

void