EaxGridView.firePropertyChanged

Syntax

firePropertyChanged(name, state);

Parameters

name. Property name.

state. Metadata sent to the server.

Description

The firePropertyChanged method handles events that occur on changing properties of OLAP cube for the table of the express report working area.

Example

Executing the example requires that the HTML page contains the EaxGrid component named eaxGrid  (see Example of creating the EaxGrid component). Then sent the modified table properties to the server:

var state = {};
var selection = eaxGrid._GridSelection;
var row = selection.getRange().getCorners().tlCoord.rowIndex;
var column = selection.getRange().getCorners().tlCoord.colIndex;
state = { grid: { method: "Down", row: row, column: column} };
// Send data to server
eaxGrid.firePropertyChanged(PP.Exp.Ui.GridCellHeaderCMenu.DetailElement, state);

After executing the example the modified table properties are sent to the server.

See also:

EaxGridView