Quick Start Basics
- 03 Nov 2020
- 1 Minute to read
- Contributors
- Print
- DarkLight
Quick Start Basics
- Updated on 03 Nov 2020
- 1 Minute to read
- Contributors
- Print
- DarkLight
Article summary
Did you find this summary helpful?
Thank you for your feedback!
In previous Comflow versions, the navigator message image always started the My Worklist task. Now, there are a number of new properties on the sitedef tag which makes it possible to configure any task, only one however, to start when clicking the message image, which is configurable as well depending on choice of quickstart.constant.id
.
The sitedef xml should look like this. The first two Navigation tags are just examples:
<Navigations id="desktop">
<Navigation name="MyFunctions.navtree"/>
<Navigation name="MySettings.navtree"/>
<Navigation name="Core.navtree"/>
<Properties>
<Property name="quickstart.constant.metadata.id" value="CACORE"/>
<Property name="quickstart.constant.id" value="navigator.worklist"/>
<Property name="quickstart.task" value="AsynchWorkflow/MyWorkListsV4"/>
<Property name="quickstart.initial.tab" value="MyWorkListsV443"/>
<Property name="quickstart.message.badge" value="true"/>
</Properties>
</Navigations>
Properties
Name | Description |
---|---|
quickstart.constant.metadata.id | Points to a repository metadata id. |
quickstart.constant.id | Points to a constant in the repository. As of this version, the constant editor also enables to define an image for the constant. You can configure the constant to either show only text, image or textandimage. Hence, the message image is no longer hard coded. |
quickstart.task | Points to the task to run. |
quickstart.initial.tab | Points to the portlet start tab, if any. |
quickstart.message.badge | Tells whether to show the message badge or not. |
Was this article helpful?