Hi Sven,
Thanks for the feedback. It should not be the case
radioGroup = new RadioGroup<T>("radioGroup", getModel());
tuneRadioGroup(radioGroup);
radioGroup.setRenderBodyOnly(false);
radioGroup.setOutputMarkupId(true);
add(radioGroup);
if(changeHandler != null) {
radioGroup.add(new AjaxFormChoiceComponentUpdatingBehavior() {
@Override
protected void onUpdate(AjaxRequestTarget target) {
changeHandler.onSelectionChanged(target,
radioGroup.getModel().getObject());
}
});
}
On Tue, Nov 17, 2015 at 7:11 PM, Sven Meier <[email protected]> wrote:
> Hi,
>
> nothing specific I can think of ... perhaps WICKET-5476?
>
> Regards
> Sven
>
>
> On 17.11.2015 18:55, Ernesto Reinaldo Barreiro wrote:
>
>> Hi,
>>
>> I have a bootstrap based component that uses a RadioGroup
>> + AjaxFormChoiceComponentUpdatingBehavior. This was working perfectly fine
>> on wicket 6. Now is no loger working with wicket 7. Are there any
>> (obvious)
>> changes on the way RadioGroup works that might be preventing it from
>> working?
>>
>>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
>
>
--
Regards - Ernesto Reinaldo Barreiro