How to add Hover over text on activity field?

darling
Kilo Contributor

Hi,

I am taring to add hover over text on activity, work notes ,comments fields on incident table but I am not able to add so can any one help me on this.

1 ACCEPTED SOLUTION

Chuck Tomasi
Tera Patron

Short answer - normally you can Configure the field label to add a hint.



The activity history has alway been a formatter, not a field, so there's no hint there. In UI16 the comments and work notes are combined in to a formatter implicitly so you can post the notes without doing a form refresh.


View solution in original post

4 REPLIES 4

Chuck Tomasi
Tera Patron

Short answer - normally you can Configure the field label to add a hint.



The activity history has alway been a formatter, not a field, so there's no hint there. In UI16 the comments and work notes are combined in to a formatter implicitly so you can post the notes without doing a form refresh.


If I have answered your question, please mark my response as correct so that others with the same question in the future can find it quickly and that it gets removed from the Unanswered list.



If you are viewing this from the community inbox you will not see the correct answer button.   If so, please review How to Mark Answers Correct From Inbox View.



Thank you


brendanwilson84
Kilo Guru

You could use a on load client script



function onLoad() {


    //Type appropriate comment here, and begin script below


   


g_form.addDecoration('name of field', 'icon-view', 'Your help text here');



}