TinyMCE settings problems

2008-11-25 Thread kengimel
i am trying to integrate TinyMCE an wicket my code is as follows: for HTML : textarea wicket:id=richTextInput rows=10 cols=60 rich text /textarea For Java Class: TextArea textArea = new TextArea(richTextInput, new Model()); textArea.add(new TinyMceBehavior());

Problem with Textfield

2008-05-11 Thread kengimel
Hi, I am new to wicket and while trying out this snippet of code. public class GetQuoteSymbol extends WebPage { private Model model; public GetQuoteSymbol() { Form form = new Form(f) { protected void onSubmit() { String sym = (String)

Re: Problem with Textfield

2008-05-11 Thread kengimel
out of scope, leaving the field still null: Model model = new Model(MSFT); if the field were final, the compiler would warn that the field was never assigned. Newgro wrote: Hello Kengimel, You do this private Model model; and that String sym = (String