Re: How to hold values in html:radio Button Group using Java Script

2007-02-08 Thread Musachy Barroso
There a lot of different ways, simplest one: var val = document.getElementById("some_id").value; or dojo.byId("id").value, if you are using Dojo, or $F("id") is you are using Prototype. regards musachy On 2/7/07, Jeevan Kumar Kade <[EMAIL PROTECTED]> wrote: Hi musachy, Thanks a lot for yo

Re: How to hold values in html:radio Button Group using Java Script

2007-02-07 Thread Jeevan Kumar Kade
Hi musachy, Thanks a lot for your reply. Your are correct, how to get the values in the javascript. Kindly please provide me code. Really it will be helpful me a lot. I am trying a lot from 3 days. Please help me Thanks in Advance Jeevan Musachy Barroso <[EMA

Re: How to hold values in html:radio Button Group using Java Script

2007-02-07 Thread Musachy Barroso
What do you mean "how can I hold those values in the javascript."? Do you mean, how to get the values in javascript? regards musachy On 2/7/07, Jeevan Kumar Kade <[EMAIL PROTECTED]> wrote: Hi All, I have 2 Radio Button Group How can i call the following html:radio code in javascript h

How to hold values in html:radio Button Group using Java Script

2007-02-07 Thread Jeevan Kumar Kade
Hi All, I have 2 Radio Button Group How can i call the following html:radio code in javascript html:radio code First Radio Button Group Second Radio Button Group Here, the value type is Integer as it having more than one value. My