Script: not found in scope: global, and HTTP Processor class not found error
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2024 07:07 PM
Hi,
GlideAjax call is throwing an error Script: not found in scope: global error. Making this call from UI action client script.
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2024 10:46 PM - edited 10-07-2024 10:59 PM
Hi @Pragati Ajanalk ,
Use below code in callback function.
function callback(response) {
var answer = response.responseXML.documentElement.getAttribute("answer");
alert(answer);
}
gs.info() doesn't work in client script.
Mark it as helpful if my solution works & don't forget to hit the thumbs up button!