Re: [Wicket-user] Table in a form

2006-12-06 Thread Ted Roeloffzen
I want to use a ListView in a Form. Does anybody have some sample code that i can use? How do i attach a model to the Form? Ted - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and

Re: [Wicket-user] Table in a form

2006-12-06 Thread Eelco Hillenius
Wicket-examples' FormInput has a very simple example of that. But consider one of the repeaters to work with forms. And look at one of the Wicket based projects at the shop you're working to see some production code. Eelco On 12/6/06, Ted Roeloffzen [EMAIL PROTECTED] wrote: I want to use a

Re: [Wicket-user] Table in a form

2006-12-06 Thread Igor Vaynberg
see here also http://issues.apache.org/jira/browse/WICKET-115 -igor On 12/6/06, Eelco Hillenius [EMAIL PROTECTED] wrote: Wicket-examples' FormInput has a very simple example of that. But consider one of the repeaters to work with forms. And look at one of the Wicket based projects at the

[Wicket-user] Table in a form

2006-12-04 Thread Ted Roeloffzen
Hi all, Is it possible with Wicket to use a DataTable(repeater) in a form? In every row of the table, there will be at least 2 textfields and a checkbox. Is this possible and if so how do I do this? Ted - Take Surveys. Earn

Re: [Wicket-user] Table in a form

2006-12-04 Thread Nick Heudecker
Create panels for the form objects in the DataTable, adding them to the IColumn. You can create the DataTable, adding it to the form. On 12/4/06, Ted Roeloffzen [EMAIL PROTECTED] wrote: Hi all, Is it possible with Wicket to use a DataTable(repeater) in a form? In every row of the table,

Re: [Wicket-user] Table in a form

2006-12-04 Thread Ali Zaid
well, I do do this all the time, I use listview to go through each object in a list, and add a fragment to the item, of course the way I do it doesn't involve edit all the items, it's like edit a row in a table, so I chose the row (keep the object id in a session variable), redraw the table, if

Re: [Wicket-user] Table in a form

2006-12-04 Thread Carfield Yim
Yes, I've asked similar question before, you can refer to this message to see how to create a custom IColumn object http://www.nabble.com/Re%3A-Question-about-DataTable-p7353431.html On 12/4/06, Nick Heudecker [EMAIL PROTECTED] wrote: Create panels for the form objects in the DataTable, adding