Re: RadioChoice and ListView

2007-08-30 Thread Alex Pine
Thank you Carlos, that fixed the problem! However, I still don't quite understand why. I guess I don't understand PropertyModel as well as I thought I did. What does PropertyModel do that allows the ParticipationList to be referenced across the two requests? Thanks again! -Alex Pine On 8/30/07,

Re: RadioChoice and ListView

2007-08-29 Thread Igor Vaynberg
problem is here RadioGroup rg = new RadioGroup(choice); you are not setting the model for the radiogroup choice so your choices go no where RadioGroup rg = new RadioGroup(choice, new PropertyModel(item.getModel(), status)); or leave it as it is and use PropertyListView instead -igor On

Re: RadioChoice and ListView

2007-08-29 Thread Alex Pine
I'm sorry to spam the list like this, but I really need help on this. Igor's solution doesn't seem to change anything. No information is transferred to the database upon hitting on submit. If no one knows the solution, does anyone have any ideas on how I could debug this? Is there some way I can