Is it possible to add a tooltip/hint to the Knowledge Article Template Selector?

Sam Santos
Tera Contributor

Hello ServiceNow Community,

I'm working on a requirement to add a tooltip/hint on hover for the Knowledge Article Template Selector. Is this possible?

Thank you!

1 ACCEPTED SOLUTION

Marcin Mierzick
Tera Contributor

Hello Sam,

I find some code and edit it to make an alert on hover over a field :

function onLoad() {
//Comment here

var message=g_form.getControl('field name');
jslog('message = ' + message);
message.onmouseover=myOnhover;

function myOnhover() {
alert(getMessage('I hovered'));
}
}

But there is quite a lot articles on community which are very similar to your problem, and you may find them helpful:

Can we pop-up message / alert when we mouse click /Hover on any field ?

CMS hover (hint/mouse over) functionality

How to dynamically set the help text on Hover Over of the Users in Approval Related list in ServiceN...

How to Display POP-UP Box [ Message Box] when we click on Button

 

Regards,

Marcin

View solution in original post

1 REPLY 1

Marcin Mierzick
Tera Contributor

Hello Sam,

I find some code and edit it to make an alert on hover over a field :

function onLoad() {
//Comment here

var message=g_form.getControl('field name');
jslog('message = ' + message);
message.onmouseover=myOnhover;

function myOnhover() {
alert(getMessage('I hovered'));
}
}

But there is quite a lot articles on community which are very similar to your problem, and you may find them helpful:

Can we pop-up message / alert when we mouse click /Hover on any field ?

CMS hover (hint/mouse over) functionality

How to dynamically set the help text on Hover Over of the Users in Approval Related list in ServiceN...

How to Display POP-UP Box [ Message Box] when we click on Button

 

Regards,

Marcin