Re: tinymce textarea in a modal window not letting to type

2014-02-07 Thread jchappelle
The original issue is pretty old but tinymce in a modal window worked in 1.5 and it is not working in 6.13.0. I guess I'm going to have to redesign my pages to not use the tinymce in a modal window. -- View this message in context:

Re: tinymce textarea in a modal window not letting to type

2014-02-07 Thread Girts Ziemelis
I had similar problem and at the end it was easier to switch to ckeditor, which work fine in a modal window (so far tested only in development). There is no integration package for wicket AFAIK, but simple custom integration for a specific use case is simple. On 02/07/2014 05:45 PM,

Re: tinymce textarea in a modal window not letting to type

2014-02-07 Thread Gabriel Landon
I remember having the same problem on a project I've done last year. Here's the code I'm using (I think that it's the TinyMceAjaxSubmitModifier that is important) : final TextAreaString textArea = new TextAreaString(property, getModel()); textArea.add(new

Re: tinymce textarea in a modal window not letting to type

2014-02-06 Thread Andrea Del Bene
Hi, as the original issue is pretty old, I think nothing has done about it lately. I will open an issue with the quickstart project and try to solve it when I will have some time. I am having this same issue in wicket 6.13.0. Any fixes as of yet? -- View this message in context:

Re: tinymce textarea in a modal window not letting to type

2014-02-05 Thread jchappelle
I am having this same issue in wicket 6.13.0. Any fixes as of yet? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/tinymce-textarea-in-a-modal-window-not-letting-to-type-tp1886534p4664214.html Sent from the Users forum mailing list archive at Nabble.com.

Re: tinymce textarea in a modal window not letting to type

2014-01-23 Thread fachhoch
I created a quick start project, first time tinymce editor shows up fine, second time cannot type into editor. myproject.zip http://apache-wicket.1842946.n4.nabble.com/file/n4663912/myproject.zip Please advice. should I create a bug report for this. -- View this message in context:

Re: tinymce textarea in a modal window not letting to type

2014-01-22 Thread fachhoch
Sorry for replying to this very old thread , I am having a similar issue, before modalwindow.show I am constructing new instance of my panel call setContent , so every time modalwindow.show is called it displays a new instance of my panel, can you please give me the script which should be

Re: tinymce textarea in a modal window not letting to type

2014-01-22 Thread fachhoch
here is my code trying with tinymce and modalwindow wicket and tinymce 6.12.0 -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/tinymce-textarea-in-a-modal-window-not-letting-to-type-tp1886534p4663886.html Sent from the Users forum mailing list archive at

Re: tinymce textarea in a modal window not letting to type

2009-07-04 Thread Cristi Manole
Fixed Just add the tinyMCE again after the modal is displayed target.appendJavascript(tinyMCE.execCommand('mceRemoveControl',false,' + ... target.appendJavascript(tinyMCE.execCommand('mceAddControl',false,' + ... On Sat, Jul 4, 2009 at 4:01 AM, Cristi Manole cristiman...@gmail.comwrote:

Re: tinymce textarea in a modal window not letting to type

2009-07-03 Thread Cristi Manole
Hey, Did you manage to solve this? I'm facing the same problem - tinymce added to a modal (based on panel) works the first time, second time it is displayed nicely but cannot do anything with it (cannot focus so cannot type). Or anybody else? Thanks On Sat, Apr 25, 2009 at 6:23 AM, balingen