I am using CKEditor as explained here:
https://isomorphic.atlassian.net/wik...or+as+a+widget
Everything is working fine (except that I changed
by
The floating windows of the ckEditor were not showing instead (I am using the newest CKEditor, maybe something changed here?)
Anyway, as I said, everything is working. BUT, when I have 2 different instances of the CKEditor in different smartGWT Tabs, the editor in the second tab is always undefined except I explicitly select the second tab.
So:
1) Open my tabSet
2) Select second tab
3) -> Works
But
1) Open my tabSet
2) If I call any function of the editor, it is undefined.
I think this happens because the editor is only created when the tab is selected. Is it possible to make the editor to always draw, even if not visible?
https://isomorphic.atlassian.net/wik...or+as+a+widget
Everything is working fine (except that I changed
Code:
baseFloatZIndex: 300000,
Code:
baseFloatZIndex: 1000000,
Anyway, as I said, everything is working. BUT, when I have 2 different instances of the CKEditor in different smartGWT Tabs, the editor in the second tab is always undefined except I explicitly select the second tab.
So:
1) Open my tabSet
2) Select second tab
3) -> Works
But
1) Open my tabSet
2) If I call any function of the editor, it is undefined.
I think this happens because the editor is only created when the tab is selected. Is it possible to make the editor to always draw, even if not visible?
Comment