Last active
November 18, 2017 11:16
-
-
Save Genkilabs/bdcc5f62c5b46a8e0904 to your computer and use it in GitHub Desktop.
Bootstrap 3 modals in Rails 4 confirms using bootstrap3-dialog JS plugin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//= require jquery | |
//= require jquery_ujs | |
//= require_tree . | |
// ^ I am assuming that bootstrap3-dialog is in the tree | |
//GLOBAL JQuery Functaionality | |
$(function(){ | |
/*** CONFIRM MODAL OVERRIDE ***/ | |
//override the use of js alert on confirms | |
//requires bootstrap3-dialog from https://github.com/nakupanda/bootstrap3-dialog | |
$.rails.allowAction = function(link){ | |
if( !link.is('[data-confirm]') ) | |
return true; | |
BootstrapDialog.show({ | |
type: BootstrapDialog.TYPE_DANGER, | |
title: 'Confirm', | |
message: link.attr('data-confirm'), | |
buttons: [{ | |
label: 'Accept', | |
cssClass: 'btn-primary', | |
action: function(dialogRef){ | |
link.removeAttr('data-confirm'); | |
link.trigger('click.rails'); | |
dialogRef.close(); | |
} | |
}, { | |
label: 'Cancel', | |
action: function(dialogRef){ | |
dialogRef.close(); | |
} | |
}] | |
}); | |
return false; // always stops the action since code runs asynchronously | |
}; | |
//Other global javascript stuffs | |
//... | |
}); | |
Minor nit, but I suggest putting it in a separate file and requiring it so that application.js is purely require
statements.
PLEASE SOS. I need example toggle Bootsrap dialog using a simple button or link. How to do? as you see in the examples NAKUPANDA repository the demo is using CODE SOURCE RUNNABLE. i want the code to be HIDDEN and launched from a simple button or menu link. thanks in advance
How can I connect this with AngularJS? ng-model does not work in an input form inside message
how do i use auto destroy !
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Use:
More info on customization here: http://nakupanda.github.io/bootstrap3-dialog/
Core Project: https://github.com/nakupanda/bootstrap3-dialog