The CreatorCon Call for Content is officially open! Get started here.

How to hide Task table Hints in Demand table?

kuuum_aaaya
Tera Contributor

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?

1 ACCEPTED SOLUTION

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

ChaitanyaILCR_0-1751450646874.png

 

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

ChaitanyaILCR_1-1751450759267.png

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

 

 

View solution in original post

6 REPLIES 6

kuuum_aaaya
Tera Contributor

Thank you for your suggestion.

I removed the hints from the Japanese labels in the Demand table, but the default hints from Task table's Japanese labels are still showing up due to inheritance.

Is there another solution?

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

ChaitanyaILCR_0-1751450646874.png

 

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

ChaitanyaILCR_1-1751450759267.png

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