WbkRibbon.MetadataChanged

Syntax

MetadataChanged: function (sender, args);

Parameters

sender. Event source.

args. Event information.

Description

The MetadataChanged event occurs on changing component metadata.

Example

To execute the example, the page must contain the WbkRibbon component named "ribbon" (see Example of Creating the WbkRibbon Component).

// Set event
ribbon.MetadataChanged.add(function()
{
  console.log("Metadata is changed");
});

After executing the example the browser console displays a message on changing metadata.

See also:

WbkRibbon