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) ?
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) ?