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
It took me a while to figure this out, but could you please add this to your examples to help others.
It helps with data binding info and being able to save that info in an easy to see JQuery format.
Thanks for your great and absolutely wonderful bootstrap dialog program! Sol
BootstrapDialog.show({ title: 'title', message: 'Put data into field <input id="test">', onshown: function(dialog) { $('#test').val("added text"); }, buttons: [{ label: 'Save', cssClass: 'btn-primary', id: 'btnSave', action: function (dialog) { if ($(this).on('click')) { alert($('#test').val()); dialog.close(); } } },{ label: 'Cancel', cssClass: 'btn btn-danger', id: 'btnClose', action: function (dialog) { dialog.close(); } }] }).open();
The text was updated successfully, but these errors were encountered:
@soljohnston777 Thank you, will do so.
Sorry, something went wrong.
No branches or pull requests
It took me a while to figure this out, but could you please add this to your examples to help others.
It helps with data binding info and being able to save that info in an easy to see JQuery format.
Thanks for your great and absolutely wonderful bootstrap dialog program!
Sol
The text was updated successfully, but these errors were encountered: