7

I have come across an error while using ckeditor in bootstrap 5 modal and it looks like it's a very known error and many have given solution for it for different bootstrap versions but i am not able to figure out one for bootstrap 5, please have a look.

Here is the problem with solution:- https://stackoverflow.com/a/31679096

Other similar problems:-

CKEditor Plugin: text fields not editable

Bootstrap with CKEditor equals problems

Mainly what would be the alternative of below line for bootstrap 5. $.fn.modal.Constructor.prototype.enforceFocus

If I search for it in bootstrap 4 js file I'm able to find fn.modal.Constructor in there but not in bootstrap 5. Please if someone can recreate the verified solution in the above link according to bootstrap 5 it would be very appreciated. Thank you for your time.

image describing problem

Also few notes:-

  1. All the other input types like checkboxes and dropdown works but not just text field.

  2. I have also tried removing tabindex="-1" from bootstrap modal code but the problem remains.

isherwood
  • 58,414
  • 16
  • 114
  • 157

3 Answers3

4

Thanks for this. Saved me a lot of head scratching. As of Bootstrap 5.3, this requires a small tweak:

bootstrap.Modal.prototype._initializeFocusTrap = function () { return { activate: function () { }, deactivate: function () { } } };
stephenr85
  • 151
  • 1
  • 4
2

Not sure if you figured out the answer to this yet, but I've had this same issue with a sweetalert2 modal. I scoured bootstrap's source code and found that you can remove the focus with this:

$.fn.modal.Constructor.prototype._initializeFocusTrap = function () { return { activate: function () { }, deactivate: function () { } } };

Works as of Bootstrap 5.1.3

dh6984
  • 108
  • 12
0

Bootstrap does not support nesting modals disabling enforce focus will allow other modals to get focused: <Modal enforceFocus={false}>

Seif Mohy
  • 1
  • 1
  • 1
    Your answer could be improved by providing an example of the solution and how it helps the OP. – Tyler2P Oct 16 '22 at 20:35