I want to remove the "i" icon from the reference type field in the record producer.

bonsai
Mega Sage

I created a variable in a record producer that references the user table.
I only want to share the display value with the user, so I don't want the "i" icon to appear.
I tried using "ref_decoration_disabled=true" in the dictionary attribute, but it didn't work.

Does anyone know a better way to do this?

1 ACCEPTED SOLUTION

Ankur Bawiskar
Tera Patron
Tera Patron

@bonsai 

if you want to hide it entirely in entire portal then check this

How to hide reference variable (Information icon) on Catalog items in Service portal 

If you want only for 1 catalog item and particular variable then you will require onLoad catalog client script and use DOM manipulation for that.

If my response helped please mark it correct and close the thread so that it benefits future readers.

Regards,
Ankur
Certified Technical Architect  ||  9x ServiceNow MVP  ||  ServiceNow Community Leader

View solution in original post

8 REPLIES 8

Bhuvan
Kilo Patron

@bonsai 

 

Follow this,

 

https://www.servicenow.com/community/developer-forum/how-can-i-remove-information-icon-from-a-refere...

 

If this helped to answer your query, please mark it helpful & accept the solution. 

 

Thanks,

Bhuvan

This didn't work either.

The following code is set in the CSS:

 

#sp_formfield_reference_u_test_btn > .add-on > .btn > .fa {
 display: none !imprtant;
}

 

harishk07
Tera Expert

You can add the following to the variable’s Attributes: ref_contributions=false

 

Best Regards,
Harish

✔️ Kindly mark as Helpful / Accept Solution if this answered your question

This is not effective