Skip to content
New issue

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

Multiple dialog #382

Open
nadiron opened this issue Sep 6, 2018 · 0 comments
Open

Multiple dialog #382

nadiron opened this issue Sep 6, 2018 · 0 comments

Comments

@nadiron
Copy link

nadiron commented Sep 6, 2018

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 ?

@nadiron nadiron changed the title multiple dialog Multiple dialog Sep 6, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant