70 Customizing the Contributor Interface Dashboard

Before you start customizing the dashboard, familiarize yourself with its configuration. You can also use a sample code to try out dashboard customization.

Topics:

70.1 About Dashboard Customization

When you log in to the Contributor interface, the dashboard is displayed. By default, the dashboard opens the following ready-to-use widgets: Bookmarks, SmartLists, Checkouts, and Assignments.

Figure 70-1 Dashboard with Default Widgets

Description of Figure 70-1 follows
Description of "Figure 70-1 Dashboard with Default Widgets"

You can customize the following portions of the dashboard and its widgets:

  • Number of columns

  • Column width

  • Display name, height, and dashboard position

  • Number of widgets

70.2 Customizing the Dashboard

When you’re customizing the dashboard, you can override the controller element which generates the system-defined dashboard. You can configure a dashboard with a global setting or make it site-specific. On the dashboard, you can customize default widgets, add new widgets, and delete those that content and marketing teams no longer need.

  • The system-defined dashboard is generated by the controller element UI/Layout/CenterPane/DashboardContentsConfig.

    To customize the dashboard, override this element by creating your own DashBoardContentsConfig.jsp under CustomElements and customizing its properties.

Note:

When a new widget is added or an existing widget is updated, you must clear user preferences in the WEM UI for the changes to take place.

The UI/Layout/CenterPane/DashBoardContentsConfig element is shown next, followed by property descriptions in the next table.

Element UI/Layout/CenterPane/DashboardContentsConfig

<dashboardconfig>
   <dashboardlayout>
      <numberofcolumns></numberofcolumns>
      <columnwidths></columnwidths>
   </dashboardlayout>
   <components>
      <component id="widgetId"> 
         <name>widgetName</name>
         <url>widgetURL</url>
         <height>height_in_px</height>
         <dragRestriction>true | false </dragRestriction>
         <column>number_of_column_in_which_to_display_widget</column>
     </component>
         …
         … 
         …
   </components>
</dashboardconfig>

Table 70-1 Properties in UI/Layout/CenterPane/DashBoardContentsConfig.jsp

Property Description Value

<numberofcolumns>

Number of columns in the dashboard display.

Integer greater than 0.

The system default is 2.

<columnwidths>

Comma-separated widths of columns.

For example, if there are 3 columns in <numberofcolumns> then the <columnwidths> can be 30,30,40.

<components>

This section is used to define dashboard widgets.

N/A

<component>

Used to define a single widget.

N/A

<id>

ID of the widget.

Alpha-numeric value unique across widgets. Special characters are not allowed.

<name>

Displayed name of the widget.

Arbitrary string.

<url>

Controller URL.

The file location of the widget in the UI/Layout/CenterPane/DashBoard/<Your_Element>/ directory.

<height>

Height of the widget.

Height in pixels. For example, 300px.

<dragRestriction>

Restricts dragging of the widget.

true | false

<column>

The column in which the widget is displayed.

1 to n , where n is the value specified in <numberofcolumns>.

70.3 Examples of Customizing the Dashboard

You might want to ask content and marketing teams which widgets can help them be more productive. You can add those widgets to the Contributor dashboard.

To add a new widget:

  1. Create the widget element.
  2. Register the new widget in your custom DashBoardContentsConfig.jsp element.

70.3.1 Adding a Hello World Widget

These steps show how to create and register the simple widget shown in this figure.

Figure 70-2 Hello World Widget

Description of Figure 70-2 follows
Description of "Figure 70-2 Hello World Widget"

To add your widget to the dashboard create your widget as follows:

  1. Create a JSP element under CustomElements. In this example, we name the element HelloWorldHtml.

  2. For widget code, you can navigate to the sample file provided with this guide and copy its content.

To register your widget (add it to the dashboard):

  1. Open your custom DashBoardContentsConfig.jsp, locate the <components> section, and add the newly created widget's specifications. For example:
    <component id="helloworld">
      <name>Hello World</name>
      <url>Path_to_your_widget_under_CustomElements</url>
      <height>300px</height>
      <closable>false</closable>
      <open>true</open>
      <dragRestriction>true</dragRestriction>
      <style>checkoutPortlet</style>
      <column>2</column>
    </component>
    
  2. Go to the <applicationServer_install_directory>/webapps/<cs_context>/WEB-INF/classes/ReqAuthConfig.xml file and add the path to the sample element, under the excludedControllerElements list. In our example, the path is:
    <property name="excludedControllerElements">
       <list>
           <value>UI/Layout/CenterPane/DashBoard/HelloWorld</value>
       </list>
    </property>
    
  3. Refresh the home page of your Contributor interface. The new widget is displayed on your dashboard.

70.3.2 Adding a Widget that Shows Recently Modified Assets

In this section, you create a widget that shows which assets were modified in the past week. After completing the steps in this section, your dashboard displays a widget similar to the one in this figure.

Figure 70-3 Recently Modified Assets Widget

Description of Figure 70-3 follows
Description of "Figure 70-3 Recently Modified Assets Widget"

To add your widget to the dashboard, create your widget as follows:

  1. Create an Action JSP element under CustomElements. In this example, we name the element RecentlyModifiedAssetsAction.jsp. For the widget code, you can navigate to the sample file provided with this guide and copy its content.

  2. Create a Json JSP element for the Action element created in the previous step. In this example, we name the element RecentlyModifiedAssetsJson.jsp. For the code, you can navigate to the sample file provided with this guide and copy its content. Place the element in the same location as the RecentlyModifiedAssetsAction.jsp element.

  3. Create a presentation element under CustomElements for your widget. Name the element after the widget element. In this example, we name the display element RecentlyModifiedAssetsHtml.jsp. For the code, you can navigate to the sample file provided with this guide and copy its content.

    Note:

    The presentation element calls the RecentlyModifiedAssetsAction.jsp element. Enter the path to that element.

To register your widget (add it to the dashboard):

  1. Open your custom DashBoardContentsConfig.jsp, locate the <components> section, and add the newly created widget's specifications. For example:
    <component id="myrecent">
    <!-- a unique identifier for the component. This must be unique among all the components. It can be alpha numeric but no special characters allowed --> 
          <name>Recently Modified Assets</name>
          <url>Path_to_your_custom_widget's presentation_element</url>
          <height>300px</height>
          <closable>false</closable>
          <open>true</open>
          <dragRestriction>false</dragRestriction>
          <style>checkoutPortlet</style>
          <column>2</column>
    </component>
    
  2. Go to the <applicationServer_install_directory>/webapps/<cs_context>/WEB-INF/classes/ReqAuthConfig.xml file and add the path to the sample element, under the excludedControllerElements list. In our example, the path is:
    <property name="excludedControllerElements">
       <list>
          <value>UI/Layout/CenterPane/DashBoard/RecentlyModifiedAssets</value>
       </list>
    </property> 
    
  3. Refresh the dashboard to see the newly configured widget.