Re: ConcurrentModificationException

2006-02-14 Thread Ron Piterman
you can not change a collection from inside an iteration of the same. use action parameters instead of listener, that will usually do the trick ( you have to pass a parameter though...) Cheers, Ron Apache wrote: Hi! I got a page with a list of objects and a listener for deleting a object. Af

ConcurrentModificationException

2006-02-14 Thread Apache
Hi! I got a page with a list of objects and a listener for deleting a object. After deleting a obejct I get the following exception: -- org.apache.hivemind.ApplicationRuntimeException location: java.util.ConcurrentModificationException * java

ConcurrentModificationException in For component

2005-10-12 Thread Shing Hing Man
I have a Tapestry 4 page that allows a user to select a number between 1 to 5 from a PropertySelection component. For each new selection, the page is redisplayed with the selected number of TextFields using a For component. Clicking a button would compute the sum of the inputs. This works in tapes