
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-27-2015 05:43 AM
Hello everyone,
I have a question
We have related list inamed "Afftected CI" n our change tickets when i am clicking on the edit button in the related list
its opening a new page , in that new page i have two filter conditions i need to make one of the filter conditions as read only
these filter coniditons are setted via list control ,
Kindly help me for this query
Thanks,
Akhil
Solved! Go to Solution.
- Labels:
-
Service Mapping

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-29-2015 08:24 AM
Hi Guys ,
I got a solution for this using DOM manipulations
Here is the code snipet using dom
var test=document.getElementsByClassName('filter_row_condition');
for(vari=0;i<test.length;i++)
{
test[i].style.display='none';
alert("hi");
}
"The same code is working fine in Javascriptdebbuger but at the same time when i am trying the code in UI script the values are returning undefined"
Kindly help

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-29-2015 08:24 AM
Hi Guys ,
I got a solution for this using DOM manipulations
Here is the code snipet using dom
var test=document.getElementsByClassName('filter_row_condition');
for(vari=0;i<test.length;i++)
{
test[i].style.display='none';
alert("hi");
}
"The same code is working fine in Javascriptdebbuger but at the same time when i am trying the code in UI script the values are returning undefined"
Kindly help
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-27-2020 12:03 AM
Not familiar with DOM manipulations, where is this on ServiceNow?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-27-2020 01:34 AM
ANy client side code where you use the Document Object Model instead of Servicenow provided api is considered DOM Manipulation.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-29-2015 09:02 AM
you can use the omit filters/ filter roles also on the list control.