Questions tagged [alertifyjs]

AlertifyJS is a javascript framework for developing pretty browser dialogs and notifications. The library is feature rich, extensible, i18n friendly and theme-able. Not only provides a replacement for default browser dialogs, it makes it super easy to create your own!

AlertifyJS is a javascript framework for developing pretty browser dialogs and notifications. Not only provides a replacement for default browser dialogs, it makes it super easy to create your own!

AlertifyJS is an extreme makeover of alertify.js (see also the alertify tag).

  • Feature-rich

    Packed with awesome features! Modal and Modelss view modes, Move, Resize and more!

  • Extensible

    Extend existing dialogs, or create your own! using AlertifyJS is very straightforward.

  • Themeable

    Three themes right out-of-the-box (AlertifyJS, Semantic and Bootstrap)

  • Responsive

    Whether you use a desktop, laptop, tablet or mobile device. Have no worries!

  • i18n and RTL Support

    Different language or a right-to-left layout! AlertifyJS got you covered.

Resources:

70 questions
1
vote
1 answer

Can someone help fix my Alertify JS code?

I have been trying for 3 hours to get my Alertify JS code to work. I need these functions to go right after each other and to make the answer to the prompt a global variable that I can use in another function. What happens when I run it is it does…
1
vote
1 answer

Can't get Alertify messagebox to appear in asp.net

I am unable to get the AlertifyJS messagebox to work with my asp.net project. I'm trying to make a reasonably simple website and would like to improve the default alert functionality. I've viewed a number of other forums on this but unfortunately…
Mark Bell
  • 25
  • 2
1
vote
0 answers

Alertify not found using Webpack Encore Symfony 4

I'm on a trouble trying to use Alertify on my project. I'm using webpack encore from symfony 4. I have isntalled using: npm install alertifyjs --save This is my app.js // any CSS you require will output into a single css file (app.css in this…
Albeis
  • 1,544
  • 2
  • 17
  • 30
1
vote
1 answer

Set AlertifyJS Callback When Showing Dialog

I am using AlertifyJS to show custom form and make call to alter multiple records. I have defined a function to show dialog: function showDialog(title, formDialog, callbackfunction, params) { alertify.dialog('customModal', function factory() { …
Yasser Sobhdel
  • 611
  • 8
  • 26
1
vote
1 answer

Alertifyjs on angular 5 confirm method fails

While trying to implement alertifyjs on my project, I've bumped into a weird error message when trying to execute/implement the confirm method: Here's my service implementation: import { Injectable } from '@angular/core'; declare let alertify:…
Mike Gmez
  • 111
  • 3
  • 18
1
vote
0 answers

Login dialog box not showing properly - alertifyjs

I am following sample to create a login form using the alertifyjs, however, even by following the exact same code I am getting a different output opposed to what is shown when i run the sample on the alertify website…
Jackie
  • 427
  • 1
  • 9
  • 19
1
vote
1 answer

Alertify in Laravel in hosting

they could help me, I have a project in Laravel, everything works correctly in Localhost, but now that it is in the service the alertify do not work and do not let the view return, if I delete the alertify everything works fine (the sql lines, the…
Andres Vera
  • 72
  • 10
1
vote
1 answer

Popup showing below page instead of as popup

I am trying to use alertify in a angular 4 application but I can't seem to git it to work. So I started by adding alertify to my component by adding the css styleUrls: [ './myComponent.component.scss', …
null_pointer
  • 1,779
  • 4
  • 19
  • 38
1
vote
1 answer

assign max and min to alertify number prompt

I need to assign max and min values to Alertifyjs number prompt. I have this: alertify.prompt( 'Prompt Title', 'Prompt Message', 'Prompt Value', function(evt, value) { alertify.success('You entered: ' + value) } , function() { …
learango
  • 133
  • 1
  • 7
1
vote
1 answer

Magento2 alertifyjs integration

We have to integrate alertifyjs to magento2 integration, please find the below link http://alertifyjs.com/ all magento2 alerts should be in the above link Thanks
1
vote
1 answer

Alertify confirm does not work with Ember js

I'm attempting to make a popup box which confirms if you want to delete a document. If I try: if(alertify.confirm("Delete this?')) { this.store.findRecord('document', docId, {backgroundReload: false}).then((doc) => { doc.destroyRecord(); …
Tanya Branagan
  • 551
  • 1
  • 12
  • 21
1
vote
1 answer

Alert confirmation issue

I have a button on which when the user clicks to delete project on the site a confirmation pops up , I am using alertify.js for this I have the button etc working however when clicking delete the confirmation box appears and automatically deletes…
1
vote
1 answer

how to applique a mask on an Alertify.js prompt

Is there a way to applique a mask on a Alertify.js prompt ? I need to add on a jquery maska like this : $('document').ready(function(){ $('.car_number').mask('(SSS-0000'); }); On an alertify.js prompt like this : alertify.prompt( 'test',…
evergoo
  • 36
  • 8
1
vote
4 answers

call alertifyjs from typescripts

I'm trying to migrate some js code to typescript. Specifically I'm having trouble with AlertifyJs. Now Alertify seems to be many things. a discontinued project by fabien-d picked up and continued alertifyjs dot org picked up by MohammadYounes…
terle
  • 86
  • 10
1
vote
1 answer

Is it possible to separate the actions called by the cancel button and the onclose for alertify.js

I currently have this: $('form#uwbhandler').on('click', function(e){ e.preventDefault(); alertify.confirm("Mode 1", function(){ alertify.success('Sent: Success Something'); …
Kenny Powers
  • 1,254
  • 2
  • 15
  • 25