Example of the ControlBar Component Layout

Create the HTML page and perform the following steps to execute an example:

1. Add references to the following js and css files in the HEAD tag:

2. Add the following script in the SCRIPT tag:

var metabase, prxReport, prxMbService, controlBar;
function renderReport() {
metabase = new PP.Mb.Metabase(//create a repository connection
	 {
	 PPServiceUrl: "PPService.axd?action=proxy",
	 Id: "Warehouse",
	 UserCreds: { UserName: "user", Password: "password" }
	 });
metabase.open();//open repository
prxMbService = new PP.Prx.PrxMdService({ Metabase: metabase });//create a service for working with regular reports
prxReport = prxMbService.open(731737);//open report from repository by key
controlBar = new PP.Prx.Ui.ControlBar(//create a control bar
	 {
	 ParentNode: "controlBar",
	 Source: prxReport,//control bar source
	 Service: prxMbService,
	 Width: 300
	 });
}

3. In the BODY tag add the following code:

<body onselectstart="return false" onload="renderReport()" style="height: 100%;">

    <div id="controlBar" style="height: 800px;">

    </div>

</body>

After executing the example the HTML page contains the ControlBar component that looks as follows:

The number of displayed controls and their appearance depend on the source report settings.

See also:

ControlBar