Configure Case Widget
Define Case Widget
The case widget of the Portal dashboard is an interactive case list. Refer to Case list widget for details.
Below is a sample JSON definition of the case widget in the Portal dashboard.
{
"type": "case",
"id": "case-widget",
"names": [
{
"locale": "en",
"value": "Your Cases"
},
{
"locale": "de",
"value": "Ihre Vorgänge"
}
],
"layout": {
"x": 0, "y": 0, "w": 10, "h": 9,
"style": "text-color: blue;",
"styleClass": "your-widget-class"
},
"sortField": "name",
"rowsPerPage": 20,
"showWidgetInfo": true,
"showFullscreenMode": true,
"columns": [
{
"field": "start"
},
{
"field": "priority",
"visible": "false",
"width": "120"
},
{
"field": "id"
},
{
"field": "name",
"width": "400"
},
{
"field": "state",
"headers": [
{
"locale": "en",
"value": "State"
},
{
"locale": "de",
"value": "Status"
}
]
},
{
"field": "startTimestamp"
},
{
"field": "actions"
}
]
}
The basic JSON structure of the case widget
- type
: type of the widget. Use case
for a case widget
id
: ID of the widgetnames
: multilingual name of the widget on the UI.layout
: layout definition of the case widgetx
: HTML DOM Styleleft
is calculated as formulax / 12 * 100%
y
: HTML DOM Styletop
is calculated as formulay / 12 * 100%
w
: HTML DOM Stylewidth
is calculated as formula60 * w + 20 * (w - 1)
h
: HTML DOM Styleheight
is calculated as formula60 * h + 20 * (h - 1)
styleClass
(optional): add CSS classes to HTML DOM of the Case widgetstyle
(optional): add inline style to HTML DOM of the Case widget
sortField
: default sort field for the Case widgetsortDescending
: default sort direction of the default sort field. The default value isfalse
(sort direction is ascending)rowsPerPage
: maximum number of cases that are displayed on one page of the case widget. The default is 10 rows per pageshowWidgetInfo
: visibility of the widget information icon. The default value istrue
, set tofalse
to hide the iconshowFullscreenMode
: visibility of the fullscreen mode icon. The default value istrue
, set tofalse
to hide the iconcolumns
: column configurations for each column in the case widget. You can predefine filters, styles, visibility,… of columns and define custom columns, too.field
: field name of the columnFor a standard column,
field
must be one of these:id
: case IDname
: case namedescription
: case descriptionstate
: case statecreator
: case creatorstartTimestamp
: creation date and time of the caseendTimestamp
: end date and time of the caseowner
: case owneractions
: for further actions likeaccess case details
,case business details
,destroy case
For custom columns,
field
is the name of a case custom field. Portal will use the value of thefield
attribute to get the value of the column.visible
: visibility of a column. The default value is “true”. Set to “false” to hide the column.quickSearch
: apply search condition for the column when using the quick search feature. The default value isfalse
. Set totrue
to apply search condition for the column.width
: the width of the column, measured in pixels.headers
: multilingual header of the column.
Custom Columns
The Portal supports custom fields for a case. You can show them on the case widget as a column.
You can predefine which column to show, and other attributes such as filter, format, and style. Below is a standard JSON of a custom column.
{
...
"columns": [
{
"type": "CUSTOM",
"field": "supplier",
"style": "color: red",
"width": "120"
}
]
}
Besides the attributes explained in the previous section, a custom column has two differences:
type
: type of the widget column. There are two options:STANDARD
andCUSTOM
.
field
: this attribute is the name of the case’s custom field which will be used to get data for the column.
Important
Portal only displays custom fields declared in the custom-fields.yaml
file.
Refer to Custom Fields Meta Information for more information.
Filter Conditions
You can predefined filter conditions for most columns of the case widget. Each column has different conditions. Some columns only accept a list, some only a string, and some only accept a string in a special format such as date-time.
Below is the list of filterable columns and their corresponding filter conditions.
name
{ ... "columns": [ { "field": "name", "filter": "request" } ] }This column only accepts a string as the filter condition for the case name. If you define a string such as “request”, the case widget will only show cases that contain the word “request” in their name.
description
{ ... "columns": [ { "field": "description", "filter": "request" } ] }This column only accepts a string as the filter condition for the case description. If you define a string such as “request”, the case widget will only show cases that contain the word “request” in their description.
state
: Case state{ ... "columns": [ { "field": "state", "filterList": ["CREATED","DONE"] } ] }This column only accepts a list of case state names as the filter condition. If you define a list of states in
filterList
, the case widget will only show cases that have states listed infilterList
.Refer to Case States for available case states.
creator
{ ... "columns": [ { "field": "creator", "filterList": ["PO","#peter"] } ] }This column only accepts a list of role names or usernames (if you want to filter by username, put a hashtag (#) before the name) as filter conditions for the case creator’s username. If you define a string such as “#peter”, the case widget will show cases that have been created by “peter”.
startTimestamp
: Case’s created date{ ... "columns": [ { "field": "startTimestamp", "filterFrom": "04/11/2021", "filterTo": "05/28/2021" } ] }This column accepts two filter conditions
filterFrom
andfilterTo
as boundaries of a range of dates. If you define dates forfilterFrom
andfilterTo
, the case widget will show cases with a created date between the dates defined.Acceptable date formats:
dd.MM.yyyy
andMM/dd/yyyy
.
expiryTimestamp
: Case’s expiry date{ ... "columns": [ { "field": "expiryTimestamp", "filterFrom": "04/11/2021", "filterTo": "05/28/2021" } ] }This column accepts two filter conditions
filterFrom
andfilterTo
as boundaries of a range of dates. If you define dates forfilterFrom
andfilterTo
, case widget will show cases with an expiry date between the dates defined.Acceptable date formats:
dd.MM.yyyy
andMM/dd/yyyy
.
Quick Search
Quick search is a useful function for users to search quickly on the case widget. There are two attributes:
enableQuickSearch
: enables the quick search feature for the widget.
quickSearch
: indicates that a column is searchable using the quick search feature.
If you set the enableQuickSearch
attribute to false
, the quick search feature will be disabled,
regardless of the quickSearch
attribute’s value.
Conversely, if you set the enableQuickSearch
attribute to true
, the quick search feature will
scan through the values of all columns that have the quickSearch
attribute set to true
.
If you haven’t assigned the quickSearch
attribute to any column in the case widget,
the quick search feature will default to searching the name and description fields.
Below are the definition of these attributes:
enableQuickSearch
: to enable/disable the quick search feature, set theenableQuickSearch
field of the case widget as shown below.{ ... "type": "case", "id": "case_98ae4fc1c83f4f22be5244c8027ecf40" ... "enableQuickSearch": "true", ... }Valid values:
true
: show the quick search text box.
false
: hide the quick search text box.
not defined
: hide the quick search text box.
quickSearch
: to choose which columns can be searched by the quick search feature, set thequickSearch
field for each column as shown below.{ ... "type": "case", "id": "case_98ae4fc1c83f4f22be5244c8027ecf40" ... "columns": [ { "field": "id", "quickSearch": "false" }, ... ] ... }Valid values:
true
: apply quick search for this column.
false
: do not apply quick search for this column.
not defined
: thename
anddescription
columns aretrue
, other columns arefalse
by default.