Checkbox Variable to showcase Multiple Options

Sama4
Kilo Expert

Hi ,

Do we have any functionality in Istanbul to add multiple options for section like below???

find_real_file.png

Though it is documented , i dont see any such possibility as of now OOTB to add multiple values.

9 REPLIES 9

johnram
ServiceNow Employee
ServiceNow Employee

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


shloke04
Kilo Patron

Hi,



If your query is Resolved,would you mind marking the answer as correct so that the thread can be closed.



Regards,


Shloke


Hope this helps. Please mark the answer as correct/helpful based on impact.

Regards,
Shloke

anurag92
Kilo Sage

You can also try creating a formatter, and UI Macro and setting up the formatter in form layout. Something like below.



find_real_file.png



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.


ok. Thank You . I will try.


Rajnish092
Tera Contributor

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 solutionEX22.JPG

 

EX11.JPG