Can I remove Lock Icon In URL Variable on Service Portal

Rehan7
Kilo Contributor

I am trying to remove lock icon in url type variable on Service Portal Is this Possible?

Or Can I Create a Custom URL type Variable without Lock Icon On SP?

5 REPLIES 5

Shane J
Tera Guru

I was able to achieve this in Quebec with the following code in an OnChange client script:

var x = top.document.getElementById('sp_formfield_url_layout_link_unlock');
x.style.visibility = 'hidden';

You may need to add one for the 'lock' ID too, but I don't know exactly what you're trying to do.