I am using richfaces and jsf 1.2. i want to change the color of disabled h:selectBooleanCheckbox to black. I have tried:
<h:selectBooleanCheckbox value="#{supplier.carrier}" disabled="true" style="color: #000000"/>
and
<span style="color:#000000;">
<h:selectBooleanCheckbox value="#{supplier.carrier}" disabled="true" style="color: #000000"/>
</span>
but they are not working. anyone got any clue? thanks in advance.