Can I remove Lock Icon In URL Variable on Service Portal
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-24-2021 05:01 AM
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?
Labels:
- Labels:
-
Service Catalog
5 REPLIES 5
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-08-2021 11:25 AM
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.