BaseCtrl.getMetabase

Syntax

getMetabase ()

Description

The getMetabase method returns a repository used by the BI tool.

Example

To execute the example the HTML page must contain the DimTree component named dimTree and a dimension named dim (see Example of Creating the DimensionTree Component). Let us output information on the Web service to the browser console:

dimTree.getDimTreeCtrl().getMetabase().getStatus(function (sender, args)

{

    var res = JSON.parse(args.ResponseText);

    console.log(res);

})

After executing the example the browser console displays information about web service.

BaseCtrl