- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-01-2025 11:24 PM
I want to hide Hints for some fields in the Demand table, but the default Hints from Task table (parent) are still showing up.
Is there a way to hide specific Hints in Demand table without removing them from Task table?
Note:
Need Hints to remain visible for other fields
Already tried clearing Hint values in Demand table
Can't modify Task table as it affects other tables
Any suggestions?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2025 03:10 AM
Hi @kuuum_aaaya ,
you might have to remove the hint on the task table.
or you can add a blank space
which looks like this
to add blank space copy it form here ->" "
or use this site and click on "copy to clipboard" and past that space in the hint
https://www.editpad.org/tool/invisible-character
or run this script by replacing the sys_id with demand Japanese label sysid
var current = new GlideRecord("sys_documentation");
if (current.get("34186f97d7103200f2d224837e610393")){
gs.info(current.getDisplayValue());
current.hint =' '
current.update()
}
Please mark my answer as helpful/correct if it resolves your query.
Regards,
Chaitanya
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2025 02:27 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2025 03:10 AM
Hi @kuuum_aaaya ,
you might have to remove the hint on the task table.
or you can add a blank space
which looks like this
to add blank space copy it form here ->" "
or use this site and click on "copy to clipboard" and past that space in the hint
https://www.editpad.org/tool/invisible-character
or run this script by replacing the sys_id with demand Japanese label sysid
var current = new GlideRecord("sys_documentation");
if (current.get("34186f97d7103200f2d224837e610393")){
gs.info(current.getDisplayValue());
current.hint =' '
current.update()
}
Please mark my answer as helpful/correct if it resolves your query.
Regards,
Chaitanya