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

Compare with Current View Page History

« Previous Version 15 Next »

SimpleOne provides several comprised widgets for displaying read-only information on inquiries, incidents, problems, requests, and change requests forms. One of them is the Static User Information widget.

This widget retrieves information from the record referenced in the Caller field. By default, the following fields are displayed:

  • Business Phone
  • Mobile Phone
  • Email
  • Timezone
  • Location
  • Department
  • Unit
  • Work Schedule

The Static User Information widget does not display empty fields. That is, if some fields in the Employee record are not filled, they will be ignored.

You can add ACL rules to the Employee table or some of its columns. In this case, the values will be hidden.


Widget appearance


  1. User name – click on the user name, and you will be redirected to the relevant record in the Employee table.
  2. Job title.
  3. Fields with available information.

You can reorder widgets and fields using the Form Layout functionality.

To learn how to change the order of fields within the Static User Information widget, refer to the next section.

Configuring widget set of fields


Role required: admin.


To change the set of displayed fields, complete the following steps:

  1. Navigate to Portal Structure → Widgets.
  2. Open the record named Static User Information.
  3. In the Server Script field, find the line 

    Server Script
    const columnNames = [
  4. Add or delete column names in lines below. 

    Please note that the script requires the system column names in single quote marks like 'business_phone' for the Business Phone column.  

  5. Click Save or Save and Exit to apply changes.


You can also change the fields order by moving lines with their system names in the Server Script field.


For example, we want to hide the phone numbers and add the name of the employee's manager. To do that we perform the steps described below. In the Server Script field, we make the following edits:

  • deleting lines containing column names 'business_phone' and 'mobile_phone'
  • adding a new line containing the system column name 'manager' from the Employee table
Server Script (before)
            const columnNames = [
                'business_phone',
                'mobile_phone',
                'email',
                'timezone_id',
                'location',
                'department',
                'unit',
                'work_schedule'
            ];
Server Script (after)
            const columnNames = [
                'email',
                'manager'
                'timezone_id',
                'location',
                'department',
                'unit',
                'work_schedule'
            ];


Adding widget to custom ITSM essence


To add the Static User Information widget to a custom ITSM table, extended from the ITSM Task table, perform the following steps:

  1. Open the custom table form.
  2. In the hamburger menu , select Configure → Form → Layout.
  3. From the Available box, move the Static User Information widget to the Selected box.
  4. Click Save.

  • No labels