You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 11 Next »

The Self-Service Portal contains the current user's workspace, Cabinet.

My Cabinet provides the following elements:

  • My Tickets
  • My CI.

CI are configuration items that belong to the current user. See the Configuration Management article to learn more.

My Tickets


Generally, a list of records contains elements as listed below:

  1. The <breadcrumbs> widget allowing navigation within the Portal pages structure.
  2. The <sidemenu> widget adding a sidemenu.
  3. The <listitems> widget leading to a list of records. The widget is bound with the Task table. Open the record form by clicking on the element.


The page is located on a separate node.

Breadcrumbs widget configuration

To configure breadcrumbs correctly, it is preferable to use the attribute values as in the example below (type these values in the Template field of the <breadcrumbs> widget form):

breadcrumbs
<div class="portal__breadcrumbs customized">
  <breadcrumbs>
</div>

After that, you can define the breadcrumbs view in the CSS field of this form:

Breadcrumbs CSS
.customized {
   background: #FFFFFF;
  padding: 9px 0px 8px 16px;
}

Sidemenu widget configuration

To configure a sidemenu widget, it is preferable to follow the recommendations when filling in the attribute values. You can use the example below as a pattern:

Sidemenu
<SideMenu
parentsDepth="1"
childrenDepth="1"
   includeCategories="1"
   includeItems="1">\
</SideMenu>

List widget configuration

To configure a list widget, it is preferable to follow the recommendations when filling in the attribute values. You can use the example below as a pattern:

listItems widget
<listitems class="linkStyles" tableName="itsm_request" condition="" listView="Widget" itemPage="page" itemView="view" choiceConditionName="state" dateConditionName="sys_updated_at" perPage="10" displayColumnNumber="2"></listitems>

On this list, service requests will be displayed of 10 records per page, sorted by the update date and time in ascending order.

My CI


Generally, a list of records contains elements as listed below:

  1. The <breadcrumbs> widget allowing navigation within the Portal pages structure.
  2. The <sidemenu> widget adding a sidemenu.
  3. The <listitems> widget displaying the items list in line with the parameters specified. The widget is bound with the Configuration item (sys_сmdb_ci) table. Open the record form by clicking on the element.


The page is located on a separate node.


To configure the breadcrumbssidemenu, and list widgets, please follow the recommendations given above.

See the Configuration Management article to learn more.

  • No labels