i have written 2 client scrpits

17911a03e8
Kilo Explorer

1 st client script is onload test

function onLoad() {
   //Type appropriate comment here, and begin script below
   if (!g_user.hasRole('admin')){
g_form.setVisible('contact_type', false);
g_form.addInfoMessage('hello non admin');
   }
}
--------------------------------------------------------------------
2nd client script is 
function onLoad() {
   //Type appropriate comment here, and begin script below
   if (g_scratchpad.isVIP) {
        g_form.addInfoMessage("⚠️ Caller is a VIP! Handle with high priority.");
   
}
---------------------------------------------------------------------------------------------------
if i want to execute the onload test script it is executed when i make the 2nd script (active as false)the only onload test is working.Can someone explain me why?
0 REPLIES 0