if (#TV.TV_SELECTIONCONTEXT.selviewmode == DISP_DASHBOARD) {
return "Text for dash board mode";
}
else if (#TV.TV_SELECTIONCONTEXT.selviewmode == DISP_EXPLORE) {
return "Text for explore mode";
}
else {
#StrEmptyList.Print();
}
Note: The title will not show up in lists displayed in the property editor, but it is rendered
so that assistive technologies (like screen readers) can make use of it. The description is
not rendered at all in the property editor.
void
FSCVENVUI@1.1001:EmptyListDescription(
key ObjectClass
objclass,
key optional AttributeDefinition
attrdef,
optional boolean
islean,
optional boolean
isfilterbasedempty,
out string
title,
out string[]
description)
Name |
Description |
objclass |
(key) The object class of objects where to show the text.
|
attrdef |
(key) The attribute definition (object or aggregate list) where to show the text.
|
islean |
indicates that the CP is evaluated for a list displayed as lean list.
|
isfilterbasedempty |
indicates that the CP is evaluated for a list with no values displayed, because no column filters are applied and attrfilterbased is set
|
title |
The title string shown in the empty list. A plain text has to be returned, i.e. HTML formatting is not supported.
|
description |
(optional) An additional description shown in the empty list. You may return a string list.
Each entry in the list is displayed as a separate block. Plain text strings has to be returned, i.e. HTML formatting is not supported.
|
Additional Information