FormComponent markup

2013-02-02 Thread Lucio Crusca
Hello *, I have two classes, along the lines of: class A { String id; } class B { A manyBToOneA; String description; } I want to provide a single form such as: Id: Default description: [Submit] I plan to use two subclasses of FormComponent, so that one uses IModelA,

Re: Style Modifier

2013-02-02 Thread vineet semwal
yes,appears useful to me :) however not sure if this should be added in wicket-core.. another way of doing the same thing is a reusable ondomreadyheaderitem using jquery's css(propertyName,value) in a neat way .. On Fri, Feb 1, 2013 at 8:14 PM, William Speirs wspe...@apache.org wrote: I

Re: FormComponent markup

2013-02-02 Thread Andrea Del Bene
Hi, if you are planning to subclass a FormComponent (let's say a TextField for the id and a TextArea for the description) you don't need to use panels and you will bind your custom components to standard form's tags input type=text/ and texarea.../textarea IMHO the second component should

Re: JQuery - best practice

2013-02-02 Thread Sebastien
Hi Martin, Thank you so much! Then, I guess I am ready... All is located here (and sorry for the long preamble): https://github.com/sebfz1/wicket-jquery-ui/issues/17 Thanks best regards, Sebastien. On Thu, Jan 31, 2013 at 12:28 AM, Martin Grigorov mgrigo...@apache.orgwrote: Sebastien,

Re: JQuery - best practice

2013-02-02 Thread Martin Grigorov
Hi Sebastien, I'll take a look at it soon. On Sat, Feb 2, 2013 at 2:59 PM, Sebastien seb...@gmail.com wrote: Hi Martin, Thank you so much! Then, I guess I am ready... All is located here (and sorry for the long preamble): https://github.com/sebfz1/wicket-jquery-ui/issues/17 Thanks

[ANNOUNCE] WicketStuff 6.5.0 is released

2013-02-02 Thread Martin Grigorov
Hi, WicketStuff core 6.5.0 based on Apache Wicket 6.5.0 and it will become shortly available in Maven Central. Important: - wicketstuff-console has been excluded because of failing tests - wicketstuff-scala has been excluded because of failing compilation They will be included again in the

Re: FormComponent markup

2013-02-02 Thread Lucio Crusca
In data sabato 2 febbraio 2013 14:54:41, Andrea Del Bene ha scritto: Hi, if you are planning to subclass a FormComponent (let's say a TextField for the id and a TextArea for the description) you don't need to use panels and you will bind your custom components to standard form's tags input

Re: OSGi Activator setup

2013-02-02 Thread RalfButler
Hmmm ... I think the classes are fine. But the issue lies more by the Filter in web.xml. Has someone an example web.xml? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/OSGi-Activator-setup-tp4655994p4656021.html Sent from the Users forum mailing list archive at

Re: FormComponent markup

2013-02-02 Thread Lucio Crusca
In data sabato 2 febbraio 2013 22:28:11, Lucio Crusca ha scritto: Does that mean I'll have A.html like form input type=text ... / textarea.../textarea /form and then add my FormComponentA and FormComponentB instances directly to that Form? And that I won't have any

Re: OSGi Activator setup

2013-02-02 Thread Martin Grigorov
Hi Ralf, http://www.wicket-library.com/wicket-examples-6.0.x/index.html is the application from http://central.maven.org/maven2/org/apache/wicket/wicket-examples/6.5.0/ It has pretty full web.xml Maybe it will be better if you paste your web.xml and other users can spot the error. But I think

Re: Style Modifier

2013-02-02 Thread William Speirs
@Paul Bors I would normally do the same type of thing, but I found myself in a situation where I needed to style the background color of a div that is dynamically loaded from a DB. ie, the user is free to chose whatever color they want for the div's background. A quick modification of the style