Re: [Wicket-user] wicket-contrib-tinymce textareas

2007-02-10 Thread Iulian Costan
done, feature is commit ed in both trunk and branches (1.2, 1.3), i also attached an example ExactModeTinyMCEPage.java showing how to use tinymce exact mode. let me know if it works for you. /iulian On 2/9/07, Francisco Treacy [EMAIL PROTECTED] wrote: Iulian: great. Please let me know when

Re: [Wicket-user] wicket-contrib-tinymce textareas

2007-02-08 Thread Francisco Treacy
Iulian: great. Please let me know when this is commited (i just looked up in svn and there were no new commits to wicket 1.2 branch in contrib tinymce). Igor: I saw the attachment, but when I clicked over the link, it took me to a sourceforge error page I'll wait for Iulian's correction,

Re: [Wicket-user] wicket-contrib-tinymce textareas

2007-02-06 Thread al
Vielen Dank für Ihre Nachricht. Ich bin zwischen dem 6. und 17. Februar im Urlaub und werde mich danach umgehend mit Ihnen in Verbindung setzen. Bitte wenden Sie sich in der Zwischenzeit an meinen Kollegen Herrn Sascha Hamann ([EMAIL PROTECTED]). Mit herzlichen Grüßen, Alexander Lohse

Re: [Wicket-user] wicket-contrib-tinymce textareas

2007-02-06 Thread Francisco Treacy
Thanks Igor, But I couldn't find TinyMceEnable anywhere (also note that i'm limited to Wicket 1.2.4 and the corresponding wicket-contrib-tinymce branch). So I did the following: // Add normal textareas add(new TextArea(description).setOutputMarkupId(true));

Re: [Wicket-user] wicket-contrib-tinymce textareas

2007-02-06 Thread Igor Vaynberg
i attached the enabler to my last message. you might have to tweak it for 1.2.x a bit, but the basic idea is the same. -igor On 2/6/07, Francisco Treacy [EMAIL PROTECTED] wrote: Thanks Igor, But I couldn't find TinyMceEnable anywhere (also note that i'm limited to Wicket 1.2.4 and the

[Wicket-user] wicket-contrib-tinymce textareas

2007-02-04 Thread Francisco Treacy
Hi wicketers, I'm having a problem/ doubt with a particular TinyMCE setting and its implementation in the wicket-contrib-tinymce project. How can I change tinyMCE.init({ mode : textareas, ... }); for tinyMCE.init({ ... mode : exact, elements : elm1,elm2 }); or mode : specific_textareas

Re: [Wicket-user] wicket-contrib-tinymce textareas

2007-02-04 Thread Igor Vaynberg
i dont know about the integration in wicket-stuff project, but i wrote my own very simple one. the idea is to use a behavior to enable tinymce for a textfield. see attached behavior, might help you get a head start. the usage is pretty basic TextArea textarea=new TextArea(...); textarea.add(new