DMSettingStep.RequestData

Syntax

RequestData: function (sender, args)

Parameters

sender. Event source.

args. Event information.

Description

The RequestData event occurs on data request from server.

Example

To execute the example, the HTML page must contain the DataMiningMaster component named dmMaster (see Example of Creating the DataMiningMaster Component).

// Get current step
step = dmMaster.getSteps()[0];
// Set event
step.RequestData.add(function(sender, args){
    console.log(args);
});

After executing the example the event is added.

See also:

DMSettingsStep