Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

1)

<h:column>
    <h:selectBooleanCheckbox
        value="#{CertificateInsuranceAddRq.insuranceSvcRq.com_csc_CertificateInsuranceAddRq.com_csc_CertificateInfo.com_csc_RenewalInd}">
        <p:ajax event="change" update="continuous" />
    </h:selectBooleanCheckbox>
    <h:outputLabel value="#{label.renewable}" style="font-weight:bold" />
</h:column>

2)

<h:column>
    <h:selectBooleanCheckbox id="continuous"
        disabled="#{!CertificateInsuranceAddRq.insuranceSvcRq.com_csc_CertificateInsuranceAddRq.com_csc_CertificateInfo.com_csc_RenewalInd}"
        value="#{CertificateInsuranceAddRq.insuranceSvcRq.com_csc_CertificateInsuranceAddRq.com_csc_CertificateInfo.contractTerm.continuousInd}">
    </h:selectBooleanCheckbox>
    <h:outputLabel value="#{label.contUntilCancel}" style="font-weight:bold" />
</h:column>

In this I have two checkbox, one is renewable(by default check) and other is continous until cancel. I want that when I deselect the renewable checkbox the other checkbox should be disabled.

Currently it not working and when I deselect the renewable checkbox the other checkbox is not getting disabled (it's getting disabled only when I click on window after deselecting) .

Please give me the way to solve it?

share|improve this question

2 Answers

up vote 1 down vote accepted

change

<p:ajax event="change" update="continuous" />

to

<p:ajax event="click" update="continuous" />

ie seems to accept the change only on focus out

share|improve this answer
Hi,thanks !!its working fine but when i deselect one checkbox its remain checked. – Vikas Soni Aug 30 '11 at 8:54
please see this. – Vikas Soni Aug 30 '11 at 8:54
thanks i resolved the issue. – Vikas Soni Aug 30 '11 at 9:21

You can do it with JavaScript. Disable the checkbox when other checkbox's state change. Use onchange attribute to fire the JavaScript function.

onchange="if(this.checked) {
            document.getElementById('continuous').disabled = true; 
            }
          else {
            document.getElementById('continuous').disabled = false; 
            }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.