- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2023 02:25 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2023 02:59 AM
@Alon Grod Please update your UI Action code as follows and it should work.
function myFunc(){
var glideAjax = new GlideAjax('alonTest');
glideAjax.addParam('sysparm_name','isTest');
glideAjax.getXML(responseCallback);
function responseCallback(respone){
alert('response received');
}
}

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2023 02:32 AM
@Alon Grod You forgot to add your onClick() function name in Onclick field. Please add the same and the method call will start taking place.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2023 02:37 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2023 02:41 AM
@Alon Grod Please write myFunc() in place of myFunc in Onclick field, brackets () should also be present.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2023 02:43 AM