Re: [Wicket-user] Editing form(s) for table rows

2006-07-25 Thread Eelco Hillenius
I would just go a simpler route and have one form for all components. When you use ajax, only the model of the component that triggered the ajax call is updated and the others are left like they were. Besides being simpler and more efficient memory wise, it's also easier to convert back to non-ajax

[Wicket-user] Editing form(s) for table rows

2006-07-24 Thread JK
Hello, What is recommended way (Wicket 1.2.1, Ajax) to make table rows editable? If table contains data: [edit] 1 abc [edit] 2 def [edit] 3 ghi [edit] 4 jkl Should I have: [edit] 1 abc hiddenForm1 [edit] 2 def formEditingItem2 [edit] 3 ghi hiddenForm3 [edit] 4 jkl hiddenForm4 Or is there way t