hi people,

i'm quite puzzled with this little problem:

i have two Radio buttons within a RadioGroup. both radios have an
ajaxeventbehavior("onclick") attached to them, and there are no models
backing those components. this works fine.

my problem is i want the *first* option to be "checked" by default,
but no matter what the second one gets checked by default in the
browser.
yes, i played around with *checked="checked"* in my html but wicket
always outputs *checked="checked"* on the second radio button - and
the browser (firefox) interprets that by checking the second one.

code:

                final RadioGroup<Void> group = new RadioGroup<Void>("group");
                Radio<Void> radio1 = new Radio<Void>("radio1");
                radio1.add(new AjaxEventBehavior("onclick") {
                        @Override
                        protected void onEvent(AjaxRequestTarget target) {
                                (do stuff)
                        }
                });
                
                Radio<Void> radio2 = new Radio<Void>("radio2");
                radio2.add(new AjaxEventBehavior("onclick") {
                        @Override
                        protected void onEvent(AjaxRequestTarget target) {
                                (do stuff)
                        }
                });
                group.add(radio1);
                group.add(radio2);
                add(group);


<span wicket:id="group">
                                <input type="radio" wicket:id="radio1" 
checked="checked" /> Discussie
                                <input type="radio" wicket:id="radio2" /> 
Opiniepeiling
                        </span>

wicket outputs:

<input type="radio" wicket:id="radio1" checked="checked" id="radio122"
name="tabs:panel:group" value="radio63" onclick="var
wcall=wicketAjaxGet('?wicket:interface=:4:tabs:panel:group:radio1:1:IBehaviorListener:0:',null,null,
function() {return Wicket.$('radio122') != null;}.bind(this));"/>
Discussie
                                <input type="radio" wicket:id="radio2" 
id="radio223"
name="tabs:panel:group" value="radio64" checked="checked" onclick="var
wcall=wicketAjaxGet('?wicket:interface=:4:tabs:panel:group:radio2:1:IBehaviorListener:0:',null,null,
function() {return Wicket.$('radio223') != null;}.bind(this));"/>
Opiniepeiling


any ideas of what could be going wrong? thanks in advance,

francisco

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

Reply via email to