i am calling a java script function on click of a radio button and based on the radio button i need to call another java script function to clear some field values.
Problem : always entering approve function and field is not cleared
here is a snap shot of the code please go through it and guide me where i am wrong and what can be done.
<h:selectOneRadio id="selectApprovaRl1" onfocus="return setemptyrejquery(this.form)" value="#{bean.approvalCode}"> <f:selectItem id="selDecR1" itemLabel="Approve" itemValue="Approved" /> <f:selectItem id="selDecR2" itemLabel="Reject" itemValue="Rejected" /> <f:selectItem id="selDecR3" itemLabel="Query" itemValue="Queried" /> <f:selectItem id="selDecR4" itemLabel="Pending" itemValue="Pending" /> <a4j:support event="onclick" reRender="listPanel11,listPanel22,listPanel33,listPanel44,listPanel445" /> </h:selectOneRadio>
java script function
<script type="text/javascript">
function setemptyrejquery(f){
alert("running................."+f.name);
var ex1 = document.getElementById('selDecR1');
var ex2 = document.getElementById('selDecR2');
var ex3 = document.getElementById('selDecR3');
var ex4 = document.getElementById('selDecR4');
ex1.onclick = approve(f.name);
ex2.onclick = rejquery(f.name);
ex3.onclick = rejquery(f.name);
ex4.onclick = pending(f.name);
}
function approve(f) {
alert("running.......approve.........."+f);
var txt4=document.getElementById('textDec12').value="";
var txt5=document.getElementById('textDec2').value="";
alert("Reseted........approve");
}
function rejquery(f) {
alert("running.......rejquery.........."+f);
var txt4=document.getElementById('textDec1').value="";
var txt5=document.getElementById('textDec22').value="";
alert("Reseted.........rejquery");
}
function pending(f) {
alert("running.......pending.........."+f);
var txt4=document.getElementById('textDec145').value="";
var txt5=document.getElementById('textDec2245').value="";
alert("Reseted............pending");
}
</script>
html generated
<table class="form-container" width="100%">
<tbody>
<tr>
<td class="col_label">
<span id="Form:decision">
Decision
<span class="mandatory">
*
</span>
:
</span>
</td>
<td class="col_value_two">
<table id="Form:selectApprovaRl1">
<tr>
<td>
<input type="radio" name="Form:selectApprovaRl1" id="Form:selectApprovaRl1:0" value="Approved" onclick="A4J.AJAX.Submit('Form:j_id724','Form',event,{'similarityGroupingId':'Form:j_id730','parameters':{'Form:j_id730':'Form:j_id730'} ,'actionUrl':'/file.jsf'} )" onfocus="return setemptyrejquery(this.form)" />
<label for="Form:selectApprovaRl1:0"> Approve</label>
</td>
<td>
<input type="radio" name="Form:selectApprovaRl1" id="Form:selectApprovaRl1:1" value="Rejected" onclick="A4J.AJAX.Submit('Form:j_id724','Form',event,{'similarityGroupingId':'Form:j_id730','parameters':{'Form:j_id730':'Form:j_id730'} ,'actionUrl':'/file.jsf'} )" onfocus="return setemptyrejquery(this.form)" />
<label for="Form:selectApprovaRl1:1">
Reject
</label>
</td>
<td>
<input type="radio" name="Form:selectApprovaRl1" id="Form:selectApprovaRl1:2" value="Queried" onclick="A4J.AJAX.Submit('Form:j_id724','Form',event,{'similarityGroupingId':'Form:j_id730','parameters':{'Form:j_id730':'Form:j_id730'} ,'actionUrl':'/file.jsf'} )" onfocus="return setemptyrejquery(this.form)" />
<label for="Form:selectApprovaRl1:2">
Query
</label>
</td>
<td>
<input type="radio" checked="checked" name="createExportImportLicenseForm:selectApprovaRl1" id="Form:selectApprovaRl1:3"value="Pending" onclick="A4J.AJAX.Submit('Form:j_id724','Form',event,{'similarityGroupingId':'Form:j_id730','parameters':{'Form:j_id730':'Form:j_id730'} ,'actionUrl':'/file.jsf'} )" onfocus="return setemptyrejquery(this.form)" />
<label for="Form:selectApprovaRl1:3">
Pending
</label>
</td>
</tr>
</table>
h:selectOneRadio? – orique Feb 12 at 12:29h:selectOneRadiois missing the>of it's open tag. This means at the moment it is not valid XHTML. (Most likely not cause of your problem though). Please try validating your x/HTML at validator.w3.org and ensuring good JavaScript pratices with something like JSLint – Paul S. Feb 12 at 12:50</tbody>tag (although having all your markup on one line makes this very difficult to spot @Akshatha, you should indent it to make it easier for people to help you). The validation issue is irrelevant to the problem though. – Barney Feb 12 at 12:52