Checkbox Variable to showcase Multiple Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-10-2017 03:52 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-21-2017 01:58 PM
The ServiceNow Wiki content is no longer supported. Updated information about this topic is located here: Types of Service Catalog Variables
Visit http://docs.servicenow.com for the latest product documentation
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-10-2017 07:21 AM
Hi,
If your query is Resolved,would you mind marking the answer as correct so that the thread can be closed.
Regards,
Shloke
Regards,
Shloke
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-11-2017 10:59 PM
You can also try creating a formatter, and UI Macro and setting up the formatter in form layout. Something like below.
UI Macro Code:
<?xml version="1.0" encoding="utf-8" ?>
<j:jelly trim="false" xmlns:j="jelly:core" xmlns:g="glide" xmlns:j2="null" xmlns:g2="null">
Services Provided By GFL
<div><label><input type="checkbox" id="c1" value="Hosting"/>Hosting</label></div>
<div><label><input type="checkbox" id="c2" value="Technical Support"/>Technical Support</label></div>
<div><label><input type="checkbox" id="c3" value="Development"/>Development</label></div>
</j:jelly>
Let me know if this helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-11-2017 11:10 PM
ok. Thank You . I will try.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-15-2024 06:22 AM
First you create a label type variable and then specify all your variable of checkbox type and then create UI policy and ON Conditions make let say your four variable A,B,C,D. then please write condition on UI policy like A is not True & B is not True & C is not True & D is not True. and then create a UI action and make any of the variable Mandatory(true) then you will get your solution