Hi guys,
i try to integrate the ckeditor in a smartGWT / GWT Environment and want to display it in a popup (Canvas). Is it necessary to call the replace method for the textarea everytime i open the popup or is it possible to do it only once? Acutally after the second call i only see the textarea if i dont call the replace method manually again.
Can i get into memory problems if i call the replace method everytime i want to "display" the editor?
In this example for smartgwt it is also called everytime the editor is drawn:
http://my.virbraligo.org/articles/2013/08/22/1377142087969.html
Thanks a lot.
[SOLVED]
Hi,
it was my mistake ;-) I used the onDraw() Solution of the example. The underlaying layout is only drawn once, so the onDraw() of the CKEditor also getting called exactly once. So we dont have multiple calls of the replace() Method.