Using up/down/remove links of ListView items clears text fields

2010-08-14 Thread Sebastian
Hi, I am trying to use a list view component on a page where rows with text fields can be added, removed or moved around. I am using the removeLink, moveUpLink and moveDownLink methods of the listview to create the respective links for each list item. The problem is that even when I enable

Re: Using up/down/remove links of ListView items clears text fields

2010-08-14 Thread Igor Vaynberg
those links remove all current items and repopulate the listview becuse the index of items has to be recalculated. you can try using a non-listview repeater and implementing the links yourself. -igor On Sat, Aug 14, 2010 at 7:05 AM, Sebastian nospam...@gmx.net wrote: Hi, I am trying to use a

Re: Using up/down/remove links of ListView items clears text fields

2010-08-14 Thread Martin Makundi
Hi! You can solve this in a robust manner using reusemanager: http://osdir.com/ml/users-wicket.apache.org/2010-08/msg00161.html 2010/8/14 Sebastian nospam...@gmx.net: Hi, I am trying to use a list view component on a page where rows with text fields can be added, removed or moved around. I

Re: Using up/down/remove links of ListView items clears text fields

2010-08-14 Thread Sebastian
Hi Martin, thanks for pointing me to the reuse component concept. It solved my problem partially but not completely. The problem is, that the links provided by the listview result in HTTP GET request which means that any values recently entered will not be transferred back and get lost. I am

Re: Using up/down/remove links of ListView items clears text fields

2010-08-14 Thread Martin Makundi
Hi! Again, I have a custom solution for you :) It's called AjaxFormSubmittingChangeListenerBehavior http://apache-wicket.1842946.n4.nabble.com/New-behavior-AjaxFormSubmittingChangeListenerBehavior-td1909633.html#a1909633 2010/8/14 Sebastian nospam...@gmx.net: Hi Martin, thanks for pointing

Re: Using up/down/remove links of ListView items clears text fields

2010-08-14 Thread James Carman
But then all listviews that need up/down links have to be in a form. On Aug 14, 2010 12:37 PM, Sebastian nospam...@gmx.net wrote: Hi Martin, thanks for pointing me to the reuse component concept. It solved my problem partially but not completely. The problem is, that the links provided by

Re: Using up/down/remove links of ListView items clears text fields

2010-08-14 Thread Sebastian
Couldn't detect the listview if it is part of a form and decide for SubmitLink or Link? On 14.08.2010 18:51, James Carman wrote: But then all listviews that need up/down links have to be in a form. On Aug 14, 2010 12:37 PM, Sebastiannospam...@gmx.net wrote: Hi Martin, thanks for pointing

Re: Using up/down/remove links of ListView items clears text fields

2010-08-14 Thread Sebastian
Hi Martin, how would I use this in my case? I am relatively new to Wicket. Also does it have a graceful fallback for browsers having JS disabled? Seb On 14.08.2010 18:39, Martin Makundi wrote: Hi! Again, I have a custom solution for you :) It's called

Re: Using up/down/remove links of ListView items clears text fields

2010-08-14 Thread Martin Makundi
how would I use this in my case? Attach it as onclick event to your link? If you don't have a form in the hierarchy above it will not work. A form is needed to submit any kind of data nicely. And, it does not work without JS. Really, we are in 2010, I am sure it is time to start ignoring