Hi,
try this code
function onSubmit() {
var att = new GlideRecord("sys_attachment");
att.addQuery("table_name", "incident");
att.addQuery("sys_created_by", g_user.userName);
att.addQuery("sys_created_on", '>=', 'javascript:gs.minutesAgo(10)');
at...
Hi
Client script:Client scripts are shipped to the client (the browser) and run there instead of on the server. Users who know JavaScript can define scripts to run in the client browser
UI policy:UI policies offer an alternative to client script...
Hi
First you need to set the sys_properties glide.ui.escape_text to 'fasle'
then apply the blow line it will work
<font size=4 color='green'><i>Name</i></font>
But still there are a few things to be noted, stated in the below document.
...
Hi keen
Script actions are used to execute any server side scripts asynchronously when an event is triggered. Here are 2 use cases that I can think
1) While performing integrations and you need to send large amount of data/records or attachments to ...
Hi Rohit,
As per documentation multi row variable set doesn't allow for catalog UI policy or catalog client script to be written to hide fields of the variable set.
UI policy written inside multiset variable set has this visibilty field as readonly...