ASP.net
Awesome
Learn
Forum
Buy
Demos
Sign In
☾
☀
Switch to
Dark
Light
Mode
this site works best with javascript enabled
Ask Question
How to show error page of awe in full screen ?
Title:
B
I
{code}
?
Now when happen error of awe control It's show error page some section at right screen like this http://puu.sh/Aeui2/a0d88a7ce1.png I'd to see all error detail in full screen How I can
Save Changes
Cancel
nutfergie
asked at 02 May 2018
Answers
B
I
{code}
?
when an ajax error occurs for one of the awe helpers, the `awe.err` executes, you can see it being set in utils.js `init` awe.err = function (o, xhr, textStatus, errorThrown) { var msg = "unexpected error occured"; if (xhr) { msg = xhr.responseText || msg; } awem.notif(msg, 0, 'o-err'); // close popup that got error if (o.p && o.p.isOpen) { o.p.d.data('api').close(); } }; the `awem.notif` is showing the popup in the right top corner, you can change that to something else, for example: `$('#main').html(msg);`
Save Changes
Cancel
Omu
answered at 02 May 2018
I'd like to use awem.notif to notify users of events from the server, by trial and error found that ActionResult ... return JavaScript("Hi"); works. Is there any documentation for what I'd like to accomplish with awem.notif?
at 14 May 2018
Stephan Luis
please ask a separate questions
at 15 May 2018
Omu
please
Sign In
to leave an answer
By accessing this site, you agree to store cookies on your device and disclose information in accordance with our
cookie policy
and
privacy policy
.
OK