Welcome to Community Week 2025! Join us to learn, connect, and be recognized as we celebrate the spirit of Community and the power of AI. Get the details  

ITSM

srikanthc80
Tera Contributor

New client-scripts are run in strict mode , with direct DOM access disabled , Access to Jquery , prototype and the window object are likewise disabled, to disabled this on a per-script basis, configure this form and add the "isolate script"  field . to disable this feature for all new globally - scoped client-side scripts set the system property " glide.script.block.client.globals" to false.

 

how can i resolved  this issue can anyone help with issue in to step by step.

1 REPLY 1

Community Alums
Not applicable

Hello @srikanthc80,

You can control this behavior using the system property glide.script.block.client.globals.

Please follow these steps:

  1. Navigate to System Properties > All Properties (or directly open the sys_properties table).

  2. Search for the property "glide.script.block.client.globals"

  3. If it exists, open it and set the Value to false.

  4. If it doesn’t exist, click New, create a new property with:

    • Name: glide.script.block.client.globals

    • Type: true | false

    • Value: false

  5. Save the record.

This will disable the security feature for all scripts in the global scope.
Note: The property name may vary for scoped applications, with the scope name prefixed to it.
For example, for GRC: Business Impact Analysis, the property name would be:
sn_bia.glide.script.block.client.globals

If my response helped, please mark it as the accepted solution so others can benefit as well.