Classes


Class actuate.dashboard.DashboardDefinition

The DashboardDefinition class is a wrapper class for a dashboard file definition.
Member of: actuate.dashboard.

Class Summary
Constructor Attributes Constructor Name and Description
 
Constructs a new DashboardDefinition object.
Method Summary
Method Attributes Method Name and Description
 
Returns the name of the default active tab for this dashboard definition.
 
Returns an array of the tabs in this dashboard definition.
Class Detail
actuate.dashboard.DashboardDefinition()
Constructs a new DashboardDefinition object.
Method Detail
{String} getDefaultActiveTab()
Returns the name of the default active tab for this dashboard definition. This example displays the default active tab for the myDashDef DashboardDefinition object in an alert box:
	alert(myDashboard.getDefaultActiveTab( ));
Returns:
{String} The name of the default active tab.

{Array} getTabs()
Returns an array of the tabs in this dashboard definition. This example assigns the array of tabs to the mytabs variable:
	var mytabs = new Array[myDashDef.getTabs( )];
Returns:
{Array} An array of actuate.dashboard.Tab objects.

Documentation generated by JsDoc Toolkit 2.0.1 on Tue Jan 29 2013 05:44:21 GMT-0800 (PST)