RE: problem associated with RadioButton(Response to Richard)

2008-04-16 Thread Nutulapati, Krishna
Hi Richard, Thanks for your help. I tried it in the way you suggested. Here is my jsf code Here is my jav

Re: problem associated with RadioButton(Response to Richard)

2008-04-16 Thread Richard Yee
This code: public void handleRadio1ValueChange(ValueChangeEvent valueChangedEvent) { System.out.println("Value Change Event is"+valueChangedEvent.getSource().toString()); } doesn't match what you have for your valueChangeListener. tri:selectOneRadio id ="radio" required=

RE: problem associated with RadioButton(Response to Richard)

2008-04-16 Thread Nutulapati, Krishna
Hi Richard, Sorry for confusing you. In fact I tried with relavent method, but copied the wrong method here. The JSF code, I wrote is as follows. java code is as follows This code: public void handleRadio1ValueChange(ValueChangeEvent valueChangedEvent) { System.out.pri

Re: problem associated with RadioButton(Response to Richard)

2008-04-16 Thread Richard Yee
Krishna, Do you have handleRadio1ValueChange anywhere else in your page? Is your valueChangeListener attribute on one line or two? From the error message, the JSP page processor is treating handleRadio1ValueChange as a property instead of a method. -Richard || Nutulapati, Krishna wrote: