
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2018 09:54 AM
I developped the module to display the scroll list of incidents, using System UI, UI pages and Widget. It works well.
there are 3 columns of incidents : Number, state and short description.It displays so well but for state, the code appears. See below
I would like to display the string of state as "open, close, pending, etc..." instead of a code
how to do it ?
In advance, thank you for your return.
Sincerely
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2018 02:42 AM
That's Great, Can you please mark my response as the correct answer?
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-29-2018 09:57 AM
Hello,
Can you paste the script that displays the state value?
Thanks

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2018 12:46 AM
Number | State | Description |
---|
$[inc.number] | $[inc.state] | $[inc.short_description] |
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2018 01:03 AM
Can you try this.
$[inc.number] | $[inc.state.getDisplayValue()] | $[inc.short_description] |
Please mark my response as correct and helpful if it helped solved your question.
-Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-30-2018 01:04 AM
Just change $[inc.state] to $[inc.state.getDisplayValue()] and it should fetch you the required state labels