Master.ControlChanged

Syntax

ControlChanged: function(sender,args)

Parameters

sender. Event source.

args. Event information.

Description

The ControlChanged event occurs on changing the state of controls included into the wizard.

Example

To execute the example, the HTML page must contain chart setup master named master (see Example of the ChartMaster Use to Setup the HighChart Chart). Add a handler of the ControlChanged event:

master.ControlChanged.add(function (sender, args) {

   alert("Settings are changed")

});

After executing the example an appropriate message displays on the screen on changing master settings.

See also:

Master