hi
i need to open a new dialog (second one) from a link inside the first dialog (without button action from footer)
main page
<a href="" data-toggle="modal" data-target="#first" id="ifirst">
js
$('#ifirst').on('click', function () {
BootstrapDialog.show({
title: 'Default Title',
message: '<a href="" data-toggle="modal" data-target="#second" id="isecond">second </a>',
});
});
$('#isecond').on('click', function () {
BootstrapDialog.show({
title: 'Default Title',
message: 'welcome',
});
});
the second dialog never show ? it's possible ?
hi
i need to open a new dialog (second one) from a link inside the first dialog (without button action from footer)
main page
<a href="" data-toggle="modal" data-target="#first" id="ifirst">js
the second dialog never show ? it's possible ?