SimpleOne provides several widgets for displaying read-only information on user queries, incidents, problems, requests, and change request forms. One of them is the Static Task Information SA widget.
This widget retrieves information from the current task record. For more information on the displayable fields, read the Configure the widget fields section.
To add the Static Task Information SA widget to record forms of a specific table, complete the following steps:
The fields displayed in the Static Task Information SA widget are organized into rows and columns. The rows can have different number of columns. Each row, regardless of the number of the columns it has, takes the full width of the widget. If a field has no value, the not set placeholder is displayed in the corresponding column.
To change the displayed fields and their layout, complete the following steps:
Specify the system names of columns you need to include in the widget in the following format.
{ "fields": [ ["priority","sys_created_at"], ["assignment_group","assigned_user"], ["contact_type","service"] ], } |
As a result, the widget has:
You can set the minimal height of the widget in pixels. Notably, the minimal height cannot be less than the height of displayed elements.
To set the minimal height, complete the following steps:
{ "minHeight": "600px", "title": "Task", "column": "state", "colorMap": [ {"color": "#0086E5", "value":"1"}, {"color": "red", "value":"-1"} ], "excludedStates": ["-2","7"] } |