Skip to content

Multiple dialog  #382

Description

@nadiron

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 ?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions