Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Attributes

 
Name
Description
Value
searchcaptionA title which is displayed on the screen.Any
  nameThe dashboard component name.Any
descriptionThe dashboard component description.Any
sqlThe dashboard component SQL statement (In the case the SQL is very simple).Any valid SQL statement
ejbThe ejb name.Any valid ejb name
methodThe method to call from the ejb.Any valid method name
typeThe dashboard component type.pie, stack, bar, summary
valuelabelsThe label values that the group by elements will have.<label_name>:<label_value>, ejb/<method_name>
primaryfieldlabelThe label that the primary field will have.Any
groupbyfieldlabelThe label that the group by field will have.Any
summarypageThe summary page name.Any valid summary page
orientationThe dashboard component orientation.vertical, horizontal
settingThe dashboard component settings. 
fieldsThe dashboard component fields.Fields

 

Example

Expand
titleSearch PageDashboard Component

Code Block
themeEclipse
languagexml
titleSearch Page
<?xml version="1.0" encoding="UTF-8"?>
<dashboardcomponent>
	<name>Rewards Participants Signups</name>
	<description>Rewards Participants Signups Bar Chart</description>
	<ejb>CRMUIRewardDashboard</ejb>
	<method>loadParticipantsSignups</method>
	<type>bar</type>
	<orientation>horizontal</orientation>
	<primaryfieldlabel>Number of Rewards Participants</primaryfieldlabel>
	<summarypage>rewards/participants</summarypage>
</dashboardcomponent>