Author
document.getElementById coming as undefined/null
jose chiramal
Ranch Hand
Joined: Feb 12, 2010
Posts: 266
posted Jul 30, 2011 00:48:18
0
<htm:table id="htmtable1" border="0" width="100%" >
<htm:tr>
<htm:td width="60%" styleClass="lableStyleLeft">
<h:selectOneRadio id="rptType" layout="lineDirection" value="Admin_Agent_Report" styleClass="pr_boldInner" onclick="loginauditReportChk();">
<f:selectItem id ="rpttype1" itemLabel="Admin/Agent Report" itemValue="Admin_Agent_Report" />
<f:selectItem id ="rpttype2" itemLabel="Login Audit Report" itemValue="Login_Audit_Report" />
</h:selectOneRadio>
</htm:td>
<htm:td width="40%">
<h utputText/>
</htm:td>
</htm:tr>
</htm:table>
I have the javascript function below
function loginauditReportChk(){
alert('from inside loginauditReportChk js');
var var1=document.getElementById("adminPanel:adminForm:rptType");
alert(var1 + " - " + var1.value);
}
The last alert above doesnt provide me the desired results ie. the element name and the value. It tells me that var1 is a HTMLTableObject and var1.value comes as undefined or null. Please assist on the below questinos :
1 . I read smwhere in this forum that the document is not yet created hence the issue...could someone please elaborate this point.
2. Am using
tomcat to run the applciation. Am I missing any jars, if so what are they.
Mahajan Nikhil
Greenhorn
Joined: Jul 30, 2011
Posts: 5
posted Jul 30, 2011 01:20:56
0
Try accessing your element in this way.
document.getElementById("rptType");
jose chiramal
Ranch Hand
Joined: Feb 12, 2010
Posts: 266
posted Jul 30, 2011 02:19:32
0
Here I have the button named rptType inside the form named adminForm which is inside the panel named adminPanel
document.getElementById("adminPanel:adminForm:rptType");
jose chiramal
Ranch Hand
Joined: Feb 12, 2010
Posts: 266
posted Jul 30, 2011 02:25:20
0
Also am using safari as my browser. So please let me know if that could be the issue and the fix to overcome the same. Thanks.
Eric Pascarello
author
Rancher
Joined: Nov 08, 2001
Posts: 15357
posted Jul 30, 2011 06:25:41
0
when you post code, use code tags!
View the page source, what is the id. Looking at serverside code is useless.
Eric
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56204
posted Jul 30, 2011 11:56:34
0
I have closed this topic. When posting to this forum, post the rendered HTML not the JSF source.
[Smart Questions ] [JSP FAQ ] [Books by Bear ] [Bear's FrontMan ] [About Bear ]
subject: document.getElementById coming as undefined/null