Hi,
I have a snippet where I will have to handle exceptions :
function(result, event){
if (event.status)
{
//Do your operations
}
else if (event.type === ‘exception’)
{
alert(event.message + event.where);
}
else
{
alert(event.message);
}
}
instead of alert to User , how to display nice popup kind of error message in skuid (or jQuery) ?
Page 1 / 1
Hello KVin -
There are a couple of options I can think of
1) Display a skuid popup using the skuid.utils.createPopupFromPopupXML (see https://community.skuid.com/t/trigger-popup-from-javascript?topic-reply-list%5Bsettings%5… for more info).
2) Create a jQuery UI Dialog within your snippet (see https://community.skuid.com/t/are-you-sure-action for more info).
Hope this helps!
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.