Re: [Wicket-user] Help: Creating a Apache-licensed Wysiwyg-Textarea for Wicket

2007-04-24 Thread Thomas R. Corbin
On Tuesday 24 April 2007 2:14 am, Johan Compagner escreveu: > > And I also admit that I don't have the same patience as yours, > > providing code snippets all the time, answering to every question > > with such accuracy :-) > > > > Congratulations, Igor! > > +1 Igor for president! +1

Re: [Wicket-user] Help: Creating a Apache-licensed Wysiwyg-Textarea for Wicket

2007-04-24 Thread Johan Compagner
And I also admit that I don't have the same patience as yours, providing code snippets all the time, answering to every question with such accuracy :-) Congratulations, Igor! +1 Igor for president! - This SF.net ema

Re: [Wicket-user] Help: Creating a Apache-licensed Wysiwyg-Textarea for Wicket

2007-04-23 Thread Igor Vaynberg
i thought doing this was part of the "job". i thought being of apache background you wouldve understood this better then any of us. -igor On 4/23/07, Jean-Baptiste Quenot <[EMAIL PROTECTED]> wrote: * Igor Vaynberg: > you know jbq, i would love to see you for once answer a question > instead

Re: [Wicket-user] Help: Creating a Apache-licensed Wysiwyg-Textarea for Wicket

2007-04-23 Thread Jean-Baptiste Quenot
* Igor Vaynberg: > you know jbq, i would love to see you for once answer a question > instead of only pimping dojo :) Igor you know most users (like me) don't want to spend time on bloated Javascript. That's why I mention this component. Besides that, Dojo's rich text editor is also a very

Re: [Wicket-user] Help: Creating a Apache-licensed Wysiwyg-Textarea for

2007-04-23 Thread Igor Vaynberg
see my reply in your original thread -igor On 4/23/07, Ralf Eichinger <[EMAIL PROTECTED]> wrote: thank you Jean-Baptiste. ok, I see there is another solution. but nevertheless I want to learn how things can be done. and I couldn't figure out how I can add dynamically gui-components. when I d

Re: [Wicket-user] Help: Creating a Apache-licensed Wysiwyg-Textarea for Wicket

2007-04-23 Thread Igor Vaynberg
you know jbq, i would love to see you for once answer a question instead of only pimping dojo :) class rtebehavior extends abstractbehavior implements iheadercontributor { public static JavascriptReference ref=new JavascriptReference( rtebehavior.class, "rte.js"); private Component target; pu

Re: [Wicket-user] Help: Creating a Apache-licensed Wysiwyg-Textarea for

2007-04-23 Thread Robbert Vergeten
with panels? a.k.a Panel myPanel; if(showPanel1) myPanel = new Panel1(); else myPanel = new Panel2(); each panel has its own markup so this way your wicket:ids are only those from the correct panel. On 4/23/07, Ralf Eichinger <[EMAIL PROTECTED]> wrote: thank you Jean-Baptiste. ok, I see ther

Re: [Wicket-user] Help: Creating a Apache-licensed Wysiwyg-Textarea for

2007-04-23 Thread Ralf Eichinger
thank you Jean-Baptiste. ok, I see there is another solution. but nevertheless I want to learn how things can be done. and I couldn't figure out how I can add dynamically gui-components. when I do a if/else in java I get exceptions because of wicket:ids in html not finding their component in java

Re: [Wicket-user] Help: Creating a Apache-licensed Wysiwyg-Textarea for Wicket

2007-04-23 Thread Jean-Baptiste Quenot
* Ralf Eichinger: > there is a tinymce-component in distribution. but it is very > heavyloaded and I want to start a wysiwyg-textarea for wicket. Such a widget already exists, check out DojoRichTextEditorBehavior in WicketStuff Dojo: http://wicket-stuff.svn.sourceforge.net/viewvc/wicket-stuf

[Wicket-user] Help: Creating a Apache-licensed Wysiwyg-Textarea for Wicket

2007-04-23 Thread Ralf Eichinger
there is a tinymce-component in distribution. but it is very heavyloaded and I want to start a wysiwyg-textarea for wicket. the license should be apache, so wicket can incorporate it. as a first time component for me I started reading source-codes (datepicker), the pro wicket book and got confused