You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/docs/asciidoc/reference_doc/ui_customization.adoc
+8-4
Original file line number
Diff line number
Diff line change
@@ -320,6 +320,9 @@ const customScreenExample = {
320
320
cardField: 'publishDate',
321
321
fieldType: 'DATE_AND_TIME'
322
322
},
323
+
{
324
+
fieldType: 'RESPONSE_FROM_MY_ENTITIES'
325
+
},
323
326
{
324
327
field: 'testField',
325
328
headerName: 'TITLE',
@@ -362,16 +365,17 @@ You can define the filters to be displayed in the header of the screen by adding
362
365
363
366
For each field you want to display in the result table, define a column object. The following field types are available:
364
367
365
-
- `SEVERITY`: Displays the severity as a color rectangle.
366
368
- `DATE_AND_TIME`: Displays the date and time formatted according to the user's locale.
367
-
- `STRING`: Displays a string value.
368
-
- `TYPE_OF_STATE`: Displays the type of state value: `INPROGRESS`, `FINISHED`, `CANCELLED`.
369
369
- `PUBLISHER`: Displays the publisher entity if the card is published by an entity, otherwise displays the user who published the card.
370
370
- `RESPONSES`: Displays the list of entities that must respond, with the color indicating the severity of the response if the entity has responded. It uses the `entitiesRequiredToRespond` field of the card. If this field is empty, it will use the `entitiesAllowedToRespond` field of the card.
371
+
- `RESPONSE_FROM_MY_ENTITIES`: Displays a blue arrow if one of the user's entity has responded to the card.
372
+
- `SEVERITY`: Displays the severity as a color rectangle.
373
+
- `STRING`: Displays a string value.
374
+
- `TYPE_OF_STATE`: Displays the type of state value: `INPROGRESS`, `FINISHED`, `CANCELLED`.
371
375
372
376
You can define the column header text using the `headerName` field.
373
377
374
-
The `cardField` is the field of the card that will be displayed in the result. It is not used for the following field types: `SEVERITY`, `TYPE_OF_STATE`, and `RESPONSES`.
378
+
The `cardField` is the field of the card that will be displayed in the result. It is not used for the following field types: `SEVERITY`, `TYPE_OF_STATE`,`RESPONSES` and `RESPONSE_FROM_MY_ENTITIES`.
375
379
376
380
The `flex` field sets the CSS flex property for the column.
0 commit comments