T5: editing textfields values from a collection

2008-05-15 Thread Leon Derks
I have an object which contains a collection with a maximum of 3 descriptions. I want to be able to edit the descriptions on the same page. At the moment I loop through the collection and print the descriptions in its own textfield on the screen. But I also want to be able to edit the

Re: T5: editing textfields values from a collection

2008-05-15 Thread Josh Canfield
But I also want to be able to edit the textfield values, when I click the save button. Are you saying that you want to modify the value in your java code after the user as clicked the save button? You can add an onValidate or onSuccess handler and modify the values there... If that's not what