WbkDataView.DocDataChanged

Syntax

DocDataChanged: function (sender, args);

Parameters

sender. Event source.

args. Event information.

Description

The DocDataChanged event occurs after parameters of a workbook document have been changed.

Example

To execute the example, the page must contain the WbkDataBox component named wbkDataBox (see WbkDataBox Constructor), and the following code must be added in the document opening event handler:

wbkDataBox.DocDataChanged.add(onDummyActionFactory("Workbook document parameters changed"));

After executing the example on clicking the button that adds a new sheet, the browser console displays an appropriate message.

See also:

WbkDataView