Skip to main content
Version: 1.28.0

User Profile

A profile page contains:

  1. a breadcrumbs widget that allows users to navigate within the structure of the portal pages.
  2. A Static User Information SA widget that displays information about the current user.
  3. A Static Record Information SA with the Work Group title that displays information about the company where the user works.

The page is located on the dedicated portal node.


To configure breadcrumbs, 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, define the breadcrumbs view in the CSS field of this form:

breadcrumbs CSS
.customized {
font-family: Tahoma,Verdana,Segoe,sans-serif;
}

Profile page configuration


The "out-of-the-box" platform version contains two widgets on the user profile page:

  • The Static User Information SA widget that displays information about the current user. The widget has the following schema option values:

    {
    "fields": [
    ["username", "business_phone"],
    ["gender", "date_of_birth"],
    ["location", "timezone_id"],
    ["work_schedule", "employment_status"]
    ],
    "hideLink": false,
    "hidePlug": false,
    "isPortal": true,
    "minHeight": "300px",
    "hideHeading": true,
    "isFoldingEnabled": true
    }

    Read more information about the widget configurations in Static User Information SA.

  • The Static Record Information SA titled as Work Group displays information about the company and department the user works for. The widget has the following schema option values:

    {
    "fields": [
    ["manager", "company"],
    ["branch", "section"],
    ["department", "unit"],
    ["group_id", "team_id"]
    ],
    "isPortal": true,
    "titleMessage": "Work Group",
    "hideUpdatedAt": true,
    "isFoldingEnabled": false
    }

    Read more information about the widget configurations in Static Record Information SA.