Hello,
we tried to follow the process described here to call remote action in skuid:
http://inversion.consulting/tag/skuid/
We created the following snippet:
xxxx.test(JSON.stringify(mypar), function(result, event) { if (event.type == ‘exception’) {When we try to call it we receive the error “ReferenceError: xxxx is not defined”.
skuid.jQuery.unblockUI();
alert(event.message);
}else{
skuid.model.updateData(contactModel],function(){
skuid.jQuery.unblockUI();
console.log(‘…OK:’);
console.log(response);
});
}
});
here our class:
global class xxxx {
@RemoteAction
global static void test(String y) {
system.debug(‘hello’);
}
Thank you.
Gabriele