- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-26-2024 11:36 PM
Hi everyone,
I have a UI action button that needs to be visible only when
State of knowledge article is review and Article version is > 1.0
Please provide me with the condition or script include whatever is the best way.
thanks in advance
Snowman
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2024 03:59 AM
This condition will do that.
current.workflow_state=='review'&¤t.version.version>1.0
The version field is a reference to the version table which contains a field named version, storing the value of the actual number, so that's why it's version.version
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-27-2024 03:59 AM
This condition will do that.
current.workflow_state=='review'&¤t.version.version>1.0
The version field is a reference to the version table which contains a field named version, storing the value of the actual number, so that's why it's version.version