Re: @radiogroup and @EventListener

2008-01-02 Thread caarney
"form") >> >> >> Henri Dupre wrote: >> > >> > I have seen some suggestions on how to handle @RadioGroup and >> > @EventListener >> > here but none of them works for me. >> > One suggestion is to add a function to any div

Re: @radiogroup and @EventListener

2007-12-10 Thread Henri Dupre
ener(elements = "someDiv", events = "clickRadio", submitForm = > "form") > > > Henri Dupre wrote: > > > > I have seen some suggestions on how to handle @RadioGroup and > > @EventListener > > here but none of them works for me. > >

Re: @radiogroup and @EventListener

2007-12-10 Thread caarney
Try using elements instead of targets: @EventListener(elements = "someDiv", events = "clickRadio", submitForm = "form") Henri Dupre wrote: > > I have seen some suggestions on how to handle @RadioGroup and > @EventListener > here but none of them

@radiogroup and @EventListener

2007-11-30 Thread Henri Dupre
I have seen some suggestions on how to handle @RadioGroup and @EventListener here but none of them works for me. One suggestion is to add a function to any div element document.getElementById('someDiv').clickRadio=function(radio) {}; add a onclick to the @Radio that calls that funct