Encountering an issue with the jodit wysiwyg editor or any similar plugin editor while working within a Bootstrap tab. When adding an editor to the tab content, the display is incorrect upon selecting the tab (displayed at a fraction of the height and missing toolbar elements).
Suspected issue arises from rendering within the hidden tab div, potentially affecting the redraw process.
Explore a working fiddle by clicking on the Editor tab to see the reduced size editor. A proper display can be seen by dragging the small resizer in the bottom right to auto resize it.
Code used to render editor:
var editor = new Jodit('#editor', {
autofocus: true,
height: "600"
});
Attempted to run editor.resize()
function post-creation, without success.
Dynamic generation of tabs and content. Any editor function available post-content application to correct the redraw issue?