Re: [Wicket-user] Creating Panels inside of Loop (Wicket 2)

2007-05-23 Thread Remco Bos
I tried to make the Menubar (from extensions 2.0) work for wicket 1.3. I ran into trouble... When searching for LoopItem and Loop I ran into this post, I thought may be related to the same problem I have now.. The java component markup hierarchy doesn't match the template hierarchy: It

Re: [Wicket-user] Creating Panels inside of Loop (Wicket 2)

2007-05-23 Thread Johan Compagner
i dont know from top of my head where this comes from:-relative_path_prefix4 but what i don't get is the protected void populateItem(LoopItem item) { method. if something is visible you add components and if they are not you dont that can't be fi the tags are in the markup they have to be in

Re: [Wicket-user] Creating Panels inside of Loop (Wicket 2)

2006-10-05 Thread Johan Compagner
the LoopItem is the parent of the panelnew MenuPanel(item, menu, menu.getModel(), menu.getMenuItems());On 9/29/06, Stefan Lindner [EMAIL PROTECTED] wrote:I have a Panel that looks like this (html) hr /ul id=nav wicket:id=menus !--Place menus here-- span wicket:id=menuPlace menus here/span/ul hr

[Wicket-user] Creating Panels inside of Loop (Wicket 2)

2006-09-29 Thread Stefan Lindner
I have a Panel that looks like this (html) hr / ul id=nav wicket:id=menus !-- Place menus here-- span wicket:id=menuPlace menus here/span /ul hr / Now I want to generate Panels for wicket id menu like this new Loop(this, menus, menus.size()) { private