Browse Source

User editable Dashboards: allow several dashlets per cell.

git-svn-id: http://svn.code.sf.net/p/itop/code/trunk@2026 a333f486-631f-4898-b8df-5754b55c2be0
dflaven 13 years ago
parent
commit
695c68b539
1 changed files with 26 additions and 20 deletions
  1. 26 20
      datamodel/itop-config-mgmt-1.0.0/config-dashboard.xml

+ 26 - 20
datamodel/itop-config-mgmt-1.0.0/config-dashboard.xml

@@ -2,24 +2,30 @@
 <dashboard xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
 <title>UI:ConfigMgmtMenuOverview:Title</title>
 <layout>DashboardLayoutTwoCols</layout>
-<dashlets>
- <dashlet id="1" xsi:type="DashletGroupByPie">
-  <title>UI-ConfigMgmtMenuOverview-FunctionalCIbyStatus</title>
-  <query>SELECT FunctionalCI</query>
-  <group_by>status</group_by>
-  <style>pie</style>
- </dashlet>
- <dashlet id="2" xsi:type="DashletGroupByBars">
-  <title>UI-ConfigMgmtMenuOverview-FunctionalCIByType</title>
-  <query>SELECT FunctionalCI</query>
-  <group_by>finalclass</group_by>
-  <style>bars</style>
- </dashlet>
- <dashlet id="3" xsi:type="DashletGroupByTable">
-  <title>UI-ConfigMgmtMenuOverview-FunctionalCIByType</title>
-  <query>SELECT FunctionalCI</query>
-  <group_by>finalclass</group_by>
-  <style>table</style>
- </dashlet>
-</dashlets>
+<cells>
+ <cell>
+  <dashlet id="1" xsi:type="DashletGroupByPie">
+   <title>UI-ConfigMgmtMenuOverview-FunctionalCIbyStatus</title>
+   <query>SELECT FunctionalCI</query>
+   <group_by>status</group_by>
+   <style>pie</style>
+  </dashlet>
+ </cell>
+ <cell>
+  <dashlet id="2" xsi:type="DashletGroupByBars">
+   <title>UI-ConfigMgmtMenuOverview-FunctionalCIByType</title>
+   <query>SELECT FunctionalCI</query>
+   <group_by>finalclass</group_by>
+   <style>bars</style>
+  </dashlet>
+ </cell>
+ <cell>
+  <dashlet id="3" xsi:type="DashletGroupByTable">
+   <title>UI-ConfigMgmtMenuOverview-FunctionalCIByType</title>
+   <query>SELECT FunctionalCI</query>
+   <group_by>finalclass</group_by>
+   <style>table</style>
+  </dashlet>
+ </cell>
+</cells>
 </dashboard>