Wicket TinyMCE 1.4.18 fails

2011-10-07 Thread Leszek Gawron
with the message in JS console: /app/resources/wicket.contrib.tinymce.InPlaceEditBehavior/tiny_mce/themes/advanced/editor_template_src.js:128 Uncaught TypeError: Cannot call method 'push' of undefined and it didn't so for 1.4.17. Could anybody confirm this? lg -- Leszek Gawron

RE: Wicket - TinyMCE/FckEditor

2011-08-02 Thread Chris Colman
W dniu 2011-08-02 09:34, Josh Kamau pisze: Hi Michal, If you want a really nice and simple Rich Text Editor, take a look at visural-wicket project. NicEdit is dead. Its not supported for long time. Doh! I did noticed it has some quirks in it's operation.

Re: Wicket - TinyMCE/FckEditor

2011-08-02 Thread Steve Swinsburg
Subject: Re: Wicket - TinyMCE/FckEditor Hi Michal, If you want a really nice and simple Rich Text Editor, take a look at visural-wicket project. Here is the link to the demos - http://wicket.visural.net/examples/app/ regards. Josh. On Tue, Aug 2, 2011 at 8:27 AM, Chris Colman chr

Wicket - TinyMCE

2011-08-01 Thread ramazan pekin
Hi to everyone, I am looking for rich text editor and I found TinyMCE. But I couldnt find any document/example page how can I integrate wicket and TinyMCE explained detailed. Do you know is there any documentation or example about this subject? Thanks, br. Ramazan

Re: Wicket - TinyMCE

2011-08-01 Thread Michal Letynski
Hi. W dniu 2011-08-02 04:29, ramazan pekin pisze: Hi to everyone, I am looking for rich text editor and I found TinyMCE. But I couldnt find any document/example page how can I integrate wicket and TinyMCE explained detailed. Do you know is there any documentation or example about this subject?

RE: Wicket - TinyMCE/FckEditor

2011-08-01 Thread Chris Colman
Are there any examples of Wicket integrated with FckEditor (the one before CkEditor)? -Original Message- From: Michal Letynski [mailto:m...@consol.ae] Sent: Tuesday, 2 August 2011 3:25 PM To: users@wicket.apache.org Subject: Re: Wicket - TinyMCE Hi. W dniu 2011-08-02 04:29, ramazan pekin

Re: Wicket - TinyMCE/FckEditor

2011-08-01 Thread Josh Kamau
examples of Wicket integrated with FckEditor (the one before CkEditor)? -Original Message- From: Michal Letynski [mailto:m...@consol.ae] Sent: Tuesday, 2 August 2011 3:25 PM To: users@wicket.apache.org Subject: Re: Wicket - TinyMCE Hi. W dniu 2011-08-02 04:29, ramazan pekin pisze: Hi

Re: Wicket - TinyMCE/FckEditor

2011-08-01 Thread Michal Letynski
@wicket.apache.org Subject: Re: Wicket - TinyMCE Hi. W dniu 2011-08-02 04:29, ramazan pekin pisze: Hi to everyone, I am looking for rich text editor and I found TinyMCE. But I couldnt find any document/example page how can I integrate wicket and TinyMCE explained detailed. Do you know is there any documentation

RE: Wicket - TinyMCE/FckEditor

2011-08-01 Thread Chris Colman
implementation they want of the image provider. If that sort of thing were available today we'd really like to move to Visural. -Original Message- From: Josh Kamau [mailto:joshnet2...@gmail.com] Sent: Tuesday, 2 August 2011 3:34 PM To: users@wicket.apache.org Subject: Re: Wicket - TinyMCE

Word-wrapping in Wicket-TinyMCE

2010-09-08 Thread Johan Haleby
-wrapping-in-Wicket-TinyMCE-tp2531412p2531412.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h

wicket tinymce blank string

2010-05-05 Thread tubin gen
I use tinymce behaviour for my textarea. Suppose user enters in tinymce textarea white spaces and saves the form , the value for the property representing textarea is neither null nor blank string , and so I insert into database, is there any way I can identify if text from inymce is

Re: wicket tinymce blank string

2010-05-05 Thread fachhoch
I mean when user enters white space into text areas , the value of the property representing textarea will contain html for blank string, I am asking how to identify html for blank string ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/wicket-tinymce-blank

Re: wicket tinymce blank string

2010-05-05 Thread Josh Glassman
http://stackoverflow.com/questions/240546/removing-html-from-a-java-string . . . and then . . . yourStringWithoutHTML.trim().isEmpty()