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

I am trying to disable user selection in tag.

    <h:selectOneRadio id="wildcard"   value="#{NewService.isWildCard}" label="#{msg.org_IsWildCard}" readonly="true" layout="lineDirection">              
                                        <f:selectItem id="yes" itemLabel="YES" itemValue="1" />
                                        <f:selectItem id="no" itemLabel="NO" itemValue="0" />                                       
</h:selectOneRadio> 

However on my GUI I am still able to select radio button value. Please tell me what is wrong in the code..Also the BackingBean code is pretty simple..I am just passing 0 or 1 in backingBean...

Please guide me on how to disable user selection in

share|improve this question
Are you using JSF 2.0 or JSF 1.2? Please fix your tags. – BalusC Sep 21 '11 at 11:56

2 Answers

up vote 0 down vote accepted

This is indeed unintuitive behaviour of the JSF-generated HTML <input type="radio"> element. There are basically 2 solutions to your problem:

  1. Use disabled="true" instead of readonly="true":

    <h:selectOneRadio disabled="true">
    
  2. Add an onclick handler which returns false:

    <h:selectOneRadio onclick="return false;">
    
share|improve this answer
thanks for the reply...It worked absolutely perfect.. – AngelsandDemons Sep 28 '11 at 9:19
You're welcome. – BalusC Sep 28 '11 at 11:56

Use the itemDisabled attribute in your selectItems:

<f:selectItem id="yes" itemLabel="YES" itemValue="1" itemDisabled="true"/>
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.