Hi all,
We have few radio buttons put in a form in a modal window. And we have a
problem with them.
When IN IE6 form in modal window is submitted we always get firstly added
radio button to the group.

<...>
>From form = new Form("form", new CompoundPropertyModel(new SearchModel()));
add(form);

RadioGroup choiseGroup = new RadioGroup("searchParam");
choiseGroup.add(new Radio("p1", new Model(SearchParams.NAME)));
choiseGroup.add(new Radio("p2", new Model(SearchParams.CODE)));
choiseGroup.add(new Radio("p3", new Model(SearchParams.CIF)));
choiseGroup.add(new Radio("p4", new Model(SearchParams.ACC_NUMBER)));
choiseGroup.add(new Radio("p5", new Model(SearchParams.CARD_NUMBER)));
form.add(choiseGroup);
<...>

Visually I can switch through radio buttons, but, when I submit form - it's
always the same value - NAME. But only on IE6. Everything works on IE7+, FF
etc. And of course we need IE6 and nothing else :/
As if other radio buttons does not exist.

Am I doing something wrong? Or is there workaround? Or smth? I'm desperate. 


-- 
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Radio-buttons-in-modal-window-in-IE6-tp2403103p2403103.html
Sent from the Wicket - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to