i see in bootbox v3 documentation you can change the label by using below method bootbox.alert(str message, str label, fn callback) Custom button text, callback invoked on dismissal,
However on version 4.4 this method does not seem to work, how can i get to use a custom button label on alert message
i see in bootbox v3 documentation you can change the label by using below method bootbox.alert(str message, str label, fn callback) Custom button text, callback invoked on dismissal,
However on version 4.4 this method does not seem to work, how can i get to use a custom button label on alert message
Share Improve this question asked May 2, 2016 at 19:42 josh_boazjosh_boaz 2,0237 gold badges35 silver badges74 bronze badges2 Answers
Reset to default 9You can override the text for any dialog, using the buttons
option (which does require you to use an options object to setup your dialog). For example, here's a custom alert:
$(function() {
bootbox.alert({
message: 'I have a custom OK button',
buttons: {
ok: {
label: 'Right on!'
}
}
})
})
<link href="https://maxcdn.bootstrapcdn./bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" />
<script src="https://ajax.googleapis./ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn./bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare./ajax/libs/bootbox.js/4.4.0/bootbox.min.js"></script>
For confirm and prompt, you can override confirm
and cancel
as buttons.
You can try something like this:
bootbox.alert({
size: 'small',
message: "Your message here…",
callback: function(){ /* your callback code */ }
}).init(function(){
$('.btn.btn-primary').text('Custom Text')
});
From the docs:
bootbox.init(function): Allows the user to supply a function to be called when dialog gets initialized.
http://bootboxjs./documentation.html#bb-public-methods