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) ?
Question
How to display a nice UI dialog Error message instead of Alert in exception handling from a Snippet
This topic has been closed for replies.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.