We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I'm trying to make a notify alert in modal but I dont understand why it's not possible.
I have:
function MessageError(titulo, contenido, notificar, doAfterFn, doAfterFnTime) { var mensaje = '<div class="ajs-sidu-error" >' + '<div class="ajs-sidu-message-icon">' + '<i class="fa fa-times"></i>' + '</div>' + '<div class="ajs-sidu-message-body">' + contenido + '</div></div>'; ` var timeAutoClose = 0;` ` if (doAfterFnTime != null) timeAutoClose = doAfterFnTime;` if (notificar) { alertify.set('notifier', 'position', 'top-center'); `` if (doAfterFn == null) alertify.notify(mensaje, 'sidu-message', timeAutoClose, function () { }); ` else alertify.notify(mensaje, 'sidu-message', timeAutoClose, doAfterFn);` ` } else {` ` return mensaje;` ` }` `}`
function MessageError(titulo, contenido, notificar, doAfterFn, doAfterFnTime) {
var mensaje =
'<div class="ajs-sidu-error" >' +
'<div class="ajs-sidu-message-icon">' +
'<i class="fa fa-times"></i>' +
'</div>' +
'<div class="ajs-sidu-message-body">' +
contenido +
'</div></div>';
` var timeAutoClose = 0;` ` if (doAfterFnTime != null) timeAutoClose = doAfterFnTime;`
if (notificar) {
alertify.set('notifier', 'position', 'top-center');
if (doAfterFn == null) alertify.notify(mensaje, 'sidu-message', timeAutoClose, function () { });
and works perfect but I don't get the alertify in modal, Could anyone help me ???
Thanks a lot !!!
The text was updated successfully, but these errors were encountered:
What do you mean by you don't get the alertify in modal ? Can you provide a working sample ?
Sorry, something went wrong.
That's the working example ... I'm trying to show a notify in modal mode. The notufy works perfects but the main page still working and not blocked.
No branches or pull requests
Hi, I'm trying to make a notify alert in modal but I dont understand why it's not possible.
I have:
function MessageError(titulo, contenido, notificar, doAfterFn, doAfterFnTime) {
var mensaje =
'<div class="ajs-sidu-error" >' +
'<div class="ajs-sidu-message-icon">' +
'<i class="fa fa-times"></i>' +
'</div>' +
'<div class="ajs-sidu-message-body">' +
contenido +
'</div></div>';
` var timeAutoClose = 0;` ` if (doAfterFnTime != null) timeAutoClose = doAfterFnTime;`
if (notificar) {
alertify.set('notifier', 'position', 'top-center');
``
if (doAfterFn == null) alertify.notify(mensaje, 'sidu-message', timeAutoClose, function () { });
` else alertify.notify(mensaje, 'sidu-message', timeAutoClose, doAfterFn);`
` } else {`
` return mensaje;`
` }`
`}`
and works perfect but I don't get the alertify in modal, Could anyone help me ???
Thanks a lot !!!
The text was updated successfully, but these errors were encountered: