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

How can I get the dropdown menu to appear on top of the dialog?

I have a navbar at the top with some dropdown menus. I also have dialogs that pop up (using alertifyjs). I would like the dropdowns to be able to be on top of the dialogs. How can I do that? I created a JSFiddle to illustrate. HTML
1
vote
1 answer

Refer external html file from alertify.dialog implementation

Can we refer an external HTML file inside alertify.dialog() implementation. Currently am using below code, which takes the html code to build my dialog. alertify.myAlert || alertify.dialog('myAlert',function factory(){ return { …
alex
  • 147
  • 1
  • 4
  • 17
1
vote
3 answers

How to close alertify.dialog

I m creating a Dialog box in my javascript using Alertify library, alertify.myAlert || alertify.dialog('myAlert',function factory(){ return { main:function(content){ …
alex
  • 147
  • 1
  • 4
  • 17
0
votes
0 answers

How to stop alertify.js from "bouncing" when it opens

I'm using alertify.js I love its options, but there is one thing I really dislike. When the modal opens, it "bounces". Run any examples here to see an example. I can't see any way to turn this off. Is there something I'm missing? How can I have the…
Shawn
  • 3,031
  • 4
  • 26
  • 53
0
votes
1 answer

Alertify is not defined problem in Angular: 12.0.4

I've try to learn angular with some online courses. When I'am trying to use Alertify i'm getting an error saying :"alertify is not defined at ProductComponent.addToCart". I share related codes below; angular.json ( i tried to change path as …
0
votes
1 answer

How to change Alerfity.defaults.theme.ok to different style in one function

In order to conveniently change the Alertify style for the different scenario, I wrote a function to do so. This function has one parameter called 'marker'. This function will change alertify.defaults.theme.ok to differernt style based on the…
Jack
  • 170
  • 2
  • 15
0
votes
1 answer

Why alertify confirm cancel button not working?

I am using alertify.confirm() in my spring mvc project. alertify.confirm( "Press OK to Confirm", function(){ console.log("ok") }, function(){ console.log("canceled") }); But whenever i press OK or CANCEL button, it prints "ok" in the…
mahfuj asif
  • 1,691
  • 1
  • 11
  • 32
0
votes
1 answer

Why AlertifyJS confirm is not working with Angular 8

I have setup AlertJS properly with my Angular App and it is working good for my success,error, and alert. However, the way I setup the confirm method is not working properly. Here is the implementation for my AlertJS Service confirm(title: string,…
Ray
  • 781
  • 2
  • 17
  • 42
0
votes
1 answer

JsGrid Custom Delete Confirmation Message

I am using jsGrid to show data. I want to replace the default delete confirmation message with that of "Alertify". I tried to replace deleteConfirm:"Are you sure?" with a function below but it shows an empty alert box and When I click on OK or…
0
votes
1 answer

JS: How do I override keyupHandler(event) function in AlertifyJS?

The issue is that I am using Select2 combobox on Alertify dialog, now whenever I try to select the select2 option using keyboard by pressing Enter key the dialog closes because the Enter key is bind to Ok button and and ESC key is bind to Cancel…
Murtuza Z
  • 5,639
  • 1
  • 28
  • 52
0
votes
1 answer

Alertify confirm multiple submit form buttons

I would like to identify which button was clicked using Alertify confirm dialog. This is my form:
0
votes
1 answer

Angular 6 component inside the alertifyjs

I want to use the alertifyjs with angular 6. And want to embed angular component into the alertifyjs body. Example code: import * as _alertify from 'alertifyjs'; _alertify.alert('Title' ,…
kursat sonmez
  • 818
  • 1
  • 12
  • 22
0
votes
1 answer

Alertify.js notification's callback not fired

I've got some issues making a callback to be invoked. I prefix that I've followed this link but it won't work right now. What I need to do is that at the notification click a new page is opened. At the current time, even a simple alert is not…
advapi
  • 3,661
  • 4
  • 38
  • 73
0
votes
0 answers

Unknown web method getTrackingNumber. Parameter name: methodName

I'm trying to call a function in my .aspx.cs, and it works fine until it is deployed. I have several method calls, but this is the only one giving me the 500 error. I've searched everywhere but can't seem to find an appropriate solution. …
0
votes
1 answer

How to remove cancel button on alertify prompt?