It has nothing to do with JSF, it is an HTML limitation. The following
does not work in both firefox and IE:
<html>
<body>
<form>
<input type="radio" readonly="true"
name="a">test</input>
<input type="radio" readonly="true"
name="a">test2</input>
<input type="text" readonly="true" value="test2"/>
</form>
</body>
</html>
The radio buttons are editable, and the text box is not, so the
browser ignores the read only property on radio buttons.
-Andrew
On 12/8/05, Matthias Kahlau <[EMAIL PROTECTED]> wrote:
> Hi!
>
>
> Doesn't the readonly attribute work with tags like selectBooleanCheckbox,
> selectManyMenu, selectOneRadio? I have tested the attribute on many
> different tags, but it seems to work only with text input tags. Why?
>
> I use Nightly 20051130 (myfaces-all.jar).
>
>
> Regards,
> Matthias
>
>