Re: introducing wicket:for attribute

2011-07-14 Thread Erik van Oosten
Its not @literal that removes the linebreaks. If you combine it with pre it works. (No need to add code as well.) *pre{@literal * label wicket:for=name * span class=label-textName/span: * /label * input wicket:id=name type=text/ * }/pre * Regards, Erik. Op 13-07-11 17:55, Igor Vaynberg

Re: introducing wicket:for attribute

2011-07-14 Thread Igor Vaynberg
sweet, i will give that a go in the future. thanks. -igor On Thu, Jul 14, 2011 at 3:05 AM, Erik van Oosten e.vanoos...@grons.nl wrote: Its not @literal that removes the linebreaks. If you combine it with pre it works. (No need to add code as well.) *pre{@literal * label wicket:for=name *

Re: introducing wicket:for attribute

2011-07-13 Thread Erik van Oosten
Amazing stuff! You can write straight html in javadoc with the {@literal} syntax. E.g.: *p * Given markup like this: * *code{@literal *label wicket:for=namespan class=label-textName/span:/labelinput wicket:id=name type=text/ * }/code * * If the {@code name} component has its label set to

Re: introducing wicket:for attribute

2011-07-13 Thread Igor Vaynberg
sweet, too bad @literal does not preserve linebreaks. what we really need is a CDATA like javadoc tag. -igor On Wed, Jul 13, 2011 at 4:12 AM, Erik van Oosten e.vanoos...@grons.nl wrote: Amazing stuff! You can write straight html in javadoc with the {@literal} syntax. E.g.: *p * Given

Re: introducing wicket:for attribute

2011-07-13 Thread Zilvinas Vilutis
You can use pre in javadocs, and still you'd need to escape html entities ( to gt;, etc ) Žilvinas Vilutis Mobile:   (+1) 623 330 6048 E-mail:   cika...@gmail.com On Wed, Jul 13, 2011 at 8:55 AM, Igor Vaynberg igor.vaynb...@gmail.com wrote: sweet, too bad  @literal does not preserve

Re: introducing wicket:for attribute

2011-07-12 Thread Igor Vaynberg
based on some feedback i changed the class name of the inner span from text to label-text to reduce chance of css collisions -igor On Fri, Jul 8, 2011 at 9:22 PM, Igor Vaynberg igor.vaynb...@gmail.com wrote: just implemented the wicket:for attribute. check out the javadoc here:

Re: introducing wicket:for attribute

2011-07-09 Thread Igor Vaynberg
On Sat, Jul 9, 2011 at 12:25 AM, Igor Vaynberg igor.vaynb...@gmail.com wrote: ported to trunk -igor On Fri, Jul 8, 2011 at 10:42 PM, robert.mcguinness robert.mcguinness@gmail.com wrote: this is going to cleanup a lot of code.  much obliged.  please let us know when in 1.5.x branch.

introducing wicket:for attribute

2011-07-08 Thread Igor Vaynberg
just implemented the wicket:for attribute. check out the javadoc here: http://svn.apache.org/viewvc/wicket/branches/wicket-1.4.x/wicket/src/main/java/org/apache/wicket/markup/html/form/AutoLabelResolver.java?view=markuppathrev=1144589 1.4.x only for now, still needs to be forward-ported to