EaxParameterView.RequestLinkedDim

Syntax

RequestLinkedDim: function (sender, args);

Parameters

sender. Event source.

args. Event information. Available arguments: FindFilter - filter used to find a dimension.

Description

The RequestLinkedDim event occurs before sending a request to find a dimension linked to parameter.

Example

Executing the example requires that the HTML page contains the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component). Handle the RequestLinkedDim event:

// Get an object of the EaxParameterView class
var paramsPanel = expressBox.getPropertyBarView().getDataSourceParamsPanel();
// Get parameter view
var parameterView = paramsPanel._Items[0];
// Handle the RequestLinkedDim event
parameterView.RequestLinkedDim.add(
    function(sender, args) {
        console.log("Filter: " + args.FindFilter);
    }
); 

After executing the example each time the RequstLinkedDim event occurs, the browser console displays a filter to find a dimension linked to the parameter.

See also:

EaxParameterView