Dhirender
Dhirender

Reputation: 634

Summer Note Issue: Insert Link dialog also hiding summer note dialog box

I am using summer note for texteditor in my project. My editory is showing in bootstrap dialog box. Everything is working fine. But when I try to insert link, summernote open one more dialog box where it asks for link information. After providing all information, either I click on insert button or close icon of this link dialof box, summer note is also removing parent dialog box in which summer note is showing but backdrop overlay still remain same.

I am also attaching the screenshot of this issue below.

enter image description here

enter image description here

enter image description here

Can some please share how to fix this issue?

Upvotes: 0

Views: 481

Answers (1)

MusheAbdulHakim
MusheAbdulHakim

Reputation: 364

You can solve this problem by adding dialogsInBody when initializing summernote. Example:

$('#your-modal').summernote({
    dialogsInBody: true
});

Upvotes: 0

Related Questions