| CustomerSettingKeyUiHomePageActions Field |
The URLs for the actions on the Home Page
Namespace:
Omada.OE.Model
Assembly:
Omada.OE.Model (in Omada.OE.Model.dll) Version: 15.0.0.0
Syntaxpublic static string UiHomePageActions
Field Value
Type:
String
Remarks
It contains two different kinds of entries, depending on action type.
Default entry type is process and points to action related to existing process template:
{
"processName": "Name of the process - needs to match a name of existing process template",
"imageUrl": "Url to image that should be shown as an icon"
}
It will show action that redirects to process template form. It'll load redirect url and description from the process that was referenced.
Another entry type is for links. Those are not connected to the process, it allows to define any link as an action on homepage:
{
"processName": "Name of the action that will be shown to the user",
"description": "Description of the action",
"imageUrl": "Url to image that should be shown as an icon"
"actionType": "link",
"actionId" "Any GUID - it should be differnt from GUIDs existing among process templates. And other links".
}
In link type entries it is possible to access translations in processName and description fields. Writing in format {APPTEXT_NAME} replaces the value with given APPTEXT.
I.e. setting: "processName": "{COMMON_Text_ExtendAccess}", will set a process name as value of COMMON_Text_ExtendAccess appstring. If name of the appstring that doesn't exists will be provided, it won't be replaced.
See Also