MetaDataViewerPanel.RequestMetadata

Syntax

RequestMetadata: function (sender, args);

Parameters

sender. Event source.

args. Event information.

Description

The RequestMetadata event is fired on metadata request.

Example

To execute the example, the page must contain the WorkbookBox component named workbookBox (see Example of Creating the WorkbookBox Component), and also add the following code in the handler, that processes document opening event:

       barView = workbookBox.getPropertyBarView();
       metaPanel = barView.getSerieAttributesPanel();
       metaPanel.RequestMetadata.add(function () { alert("Metadata is refreshed") });

After executing the example, if the attributes panel is opened and a new series is selected, a message about metadata refresh appears.

See also:

MetaDataViewerPanel