Adding link in catalog client script - showFieldMsg
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2018 10:26 PM
Hi All,
How o add links in a showFieldMsg especially in Catalog Client Script?
Please help me.
Thanks in advance,
SNOW

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-03-2018 09:51 AM
Hyperlinks are not supported in gs.showFieldMsg method.
you can use code i provided earlier with info message method.
Regards,
Sachin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-03-2018 11:52 PM
Hi
Thanks
There is any official documentation for this "Hyperlinks are not supported in gs.showFieldMsg method."
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-20-2021 07:14 AM
Can confirm, the above solution by Sachin works and hyperlinks are supported via;
g_form.addInfoMessage("Please <a href = '/incident_list.do'>Click</a>");
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2021 05:37 AM
g_form.showFieldMsg does not support hyperlink option.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-12-2021 06:01 AM
Hello SNOW,
I think you can do it via putting in System UI -> Messages
As messages accept the HTML tags
and can refer via message key in client script as below:
getMessage('<message_key>', function(msg) {
g_form.showFieldMsg("<field_name>", msg, 'info', false);
});
Please mark correct if this helps
Thanks,
Ajay Raina