aspose file tools
The moose likes JSF and the fly likes Select one radio button and display the value in java script Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » JSF
Reply Bookmark "Select one radio button and display the value in java script" Watch "Select one radio button and display the value in java script" New topic
Author

Select one radio button and display the value in java script

jose chiramal
Ranch Hand

Joined: Feb 12, 2010
Posts: 266
This is my jsp code (i have pasted only the required portion)


Javascript code :

var1=document.getElementById("adminPanel:adminForm:rptType"); // this gives me a HtmlTAbleObject
alert(var1.value); // gives me a null value here . i presume sthg wrong in the above statement..

Kindly advise how I can get the value of the radio button thats clicked from inside my javascript function.
Is it mandatory to use binding or value along with <h:selectOneRadio to get the button thats clicked..???
H Jetly
Ranch Hand

Joined: Aug 26, 2010
Posts: 41

First please you use a managed bean.
Second the value attribute of the selectOne... will contain the selected value (for eg


should be

please use the managed bean.


Harsh Jetly
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Select one radio button and display the value in java script
 
Similar Threads
selectOneRadio - javascript get value
document.getElementById coming as undefined/null
Spacing radio buttons
selectOneRadio problem
Display value of 'checked' radio button