Re: Help a newbie? ;)

2014-05-29 Thread Martin Grigorov
On Thu, May 29, 2014 at 4:22 PM, Andrea Del Bene wrote: > Hi! I will try to answer your questions: > > My questions: >> 1. Shouldn't the uiIconList be substituted/ommited? >> > Every direct child of RepeatingView inherits markup from its parent and > uses its custom markup as tag body. That's w

Re: Help a newbie? ;)

2014-05-29 Thread Andrea Del Bene
Hi! I will try to answer your questions: My questions: 1. Shouldn't the uiIconList be substituted/ommited? Every direct child of RepeatingView inherits markup from its parent and uses its custom markup as tag body. That's why uiIconList is repeated for each child. See RepeatingView's Javadoc

Re: Help a newbie? ;)

2014-05-29 Thread Márcio Pereira
I am following the free guide... I got to render some results, which are very strange however: I created a Panel descendant "Icon". I want many instances of it in a repeater. Home.html (excerpt): Home.java (excerpt): RepeatingView lst = new RepeatingView("uiIconList"); lst.add(n

Re: Help a newbie? ;)

2014-05-29 Thread Martin Grigorov
Hi, Please check http://wicket.apache.org/guide/guide/repeaters.html If you still have problems then paste your code (here if it is just few lines) or some pastebin service and we will try to help more. Martin Grigorov Wicket Training and Consulting On Thu, May 29, 2014 at 12:06 PM, Márcio Pere

Help a newbie? ;)

2014-05-29 Thread Márcio Pereira
Hey guys! I'm trying to use a repeater in the following code: 1. I couldn't really get the difference between ListView and RefreshingView 2. I found two approaches to write into the "title" property of the tag: 2a: AttributeModifier: http://stackoverflow.com/questions/1852141

Re: Wicket 6.16 release date

2014-05-29 Thread Martin Grigorov
Hi, We try to release new minor version once per month-month and half. 6.15.0 has been released on 23.04 so 6.16.0 should be released soon. Maybe next week. Martin Grigorov Wicket Training and Consulting On Wed, May 28, 2014 at 12:12 PM, Igor Dvorzhak wrote: > Hi all, > > When Wicket 6.16 wil

Re: Errors in data view , req for help to fix the error in code

2014-05-29 Thread Martin Grigorov
Please create a quickstart app and share it with us (GitHub, BitBucket,..). It will be easier to understand it by seeing the code. See https://wicket.apache.org/start/quickstart.html Martin Grigorov Wicket Training and Consulting On Thu, May 29, 2014 at 9:56 AM, kumar ramanathan wrote: > Hi F

Re: Errors in data view , req for help to fix the error in code

2014-05-29 Thread kumar ramanathan
Hi Friends, Please any help on how we can separate the data view code and populate the Provider value on submit the form . public class DemoHomePage extends WebPage { public ListDataProvider listDataProvider; List list = new ArrayList(); public DemoHom