Re: Dynamically Generated Wicket UI

2010-01-28 Thread Ernesto Reinaldo Barreiro
I really don´t know: I do not use that project myself. Maybe the developers can ask that question. Best, Ernesto On Thu, Jan 28, 2010 at 8:36 AM, Josh Kamau joshnet2...@gmail.com wrote: Hi; I have looked at wicketwebbeans and it looks impressive. Does it support wicket 1.4.5 ? the

Re: Dynamically Generated Wicket UI

2010-01-28 Thread dtoffe
The last release supports Wicket 1.3, but trunk supports 1.4 for a long time and a new release should happen soon. Regards, Daniel Josh Kamau wrote: Hi; I have looked at wicketwebbeans and it looks impressive. Does it support wicket 1.4.5 ? the currently available download at

Re: Dynamically Generated Wicket UI

2010-01-27 Thread Martin Makundi
Cannot see attachments.. link? ** Martin 2010/1/28 Josh Kamau joshnet2...@gmail.com: Hello guys;  I have this enormous task of  creating a web based UI for our ERP (the opensource Adempiere ERP). The UI is normally generated from the data store in the Database. It includes Windows, Tabs ,

Re: Dynamically Generated Wicket UI

2010-01-27 Thread Eelco Hillenius
The problem i have is adding components to the Window/tab because there is not existing markup. Use panels as place holders. They can contain anything you like at runtime including nothing at all. Rinse and repeat. Eelco - To

Re: Dynamically Generated Wicket UI

2010-01-27 Thread Josh Kamau
Sorry . Here it is. I would like to generate such a screen. I have window properties , Number of tabs on the window, fields in each tab, position of the fields relative to each other e.g same line , field length, field type e.g button, textfield, text area, check box etc. Regards. On Thu,

Re: Dynamically Generated Wicket UI

2010-01-27 Thread Josh Kamau
Eelco; How do i layout components dynamically in panel? i.e, there is not markup like a table to determine the position? if i write myPanel.add(field1) and myPanel.add(field2) and i want the fields to be laid out a) side by side b) one below the other, how do i do it ? regards and thanks.

Re: Dynamically Generated Wicket UI

2010-01-27 Thread Ernesto Reinaldo Barreiro
Hi Josh, How do i layout components dynamically in panel? i.e, there is not markup like a table to determine the position? Using repeaters? if i write myPanel.add(field1) and myPanel.add(field2) and i want the fields to be laid out a) side by side b) one below the other, how do i do it

Re: Dynamically Generated Wicket UI

2010-01-27 Thread Josh Kamau
Ernesto two dimensional repeaters? Let me check that out. never thought of it. sounds like a good idea. Josh On Thu, Jan 28, 2010 at 8:56 AM, Ernesto Reinaldo Barreiro reier...@gmail.com wrote: Hi Josh, How do i layout components dynamically in panel? i.e, there is not markup like a

Re: Dynamically Generated Wicket UI

2010-01-27 Thread Adrian Wiesmann
Hi there On 1/28/10 6:18 AM, Josh Kamau wrote: How do i layout components dynamically in panel? i.e, there is not markup like a table to determine the position? if i write myPanel.add(field1) and myPanel.add(field2) and i want the fields to be laid out a) side by side b) one below the other,

Re: Dynamically Generated Wicket UI

2010-01-27 Thread Ernesto Reinaldo Barreiro
There are several projects out there that use those techniques to dynamically build UIs. Here http://code.google.com/p/antilia/source/browse/#svn/trunk/com.antilia.web/src/com/antilia/web/crud http://code.google.com/p/antilia/source/browse/#svn/trunk/com.antilia.web/src/com/antilia/web/crudI

Re: Dynamically Generated Wicket UI

2010-01-27 Thread Josh Kamau
Adrian; Thanks. I will check it out Josh On Thu, Jan 28, 2010 at 9:24 AM, Adrian Wiesmann awiesm...@somap.orgwrote: Hi there On 1/28/10 6:18 AM, Josh Kamau wrote: How do i layout components dynamically in panel? i.e, there is not markup like a table to determine the position? if i

Re: Dynamically Generated Wicket UI

2010-01-27 Thread Josh Kamau
Hi; I have looked at wicketwebbeans and it looks impressive. Does it support wicket 1.4.5 ? the currently available download at googlecode is dated April 2009 . On Thu, Jan 28, 2010 at 9:32 AM, Ernesto Reinaldo Barreiro reier...@gmail.com wrote: There are several projects out there that use