Table of Contents

Search

  1. Preface
  2. Introduction
  3. IDD Concepts
  4. Implementation Process
  5. IDD Configuration Manager
  6. Manual IDD Configuration
  7. IDD Global Properties
  8. Sizing and Platform Requirements
  9. Application Components
  10. IDD Security Configuration
  11. Data Security
  12. Example Role-Based Security Configuration
  13. Data Masking
  14. Siperian BPM Workflow Engine
  15. Locale Codes
  16. Troubleshooting
  17. Glossary

Data Director Implementation Guide

Data Director Implementation Guide

Start Workspace Layout

Start Workspace Layout

Components in the
Start workspace
are laid out in a grid - top to bottom, left to right.
By default, these components are ordered as: task list, reports, and custom components.
You can specify the default order using the dashboardLayout element. IDD application users can further customize the set of components they will see, along with the order of these components. This is saved as part of the user preferences.
Conceptually, the
Start workspace
layout is a grid with
n
columns. Each element can occupy one row and one or more cells in that row. Not all cells of a row must be filled with elements - in that case, the rest of the row will be blank.
The following code snippet shows an example of a two-column
Start workspace
layout.
<dashboardLayout columns="2"> <dashboardLayoutItem name="my_tasks" type="TASKS" columns="*"/> <dashboardLayoutItem name="xref_composition" type="REPORT" /> <dashboardLayoutItem name="igoogle_visualization" type="EXTERNAL_LINK"/> <dashboardLayoutItem name="google_username" type="EXTERNAL_LINK"/> </dashboardLayout>
Each element in the layout is represented with the dashboardLayoutItem element, which has the following possible attributes:
Parameter
Type
Description
name
string
Unique element id inside of the dashboardLayout element.
type
TASKS, REPORT, or EXTERNAL_LINK
Type of the element.
Columns
number or "*"
Number of columns occupied by element. Default value is "1". There is a special symbol "*" for elements that occupy the whole row.
The order of elements on the
Start workspace
is the order in which they are specified in the dashboardLayout element.

0 COMMENTS

We’d like to hear from you!