Hi

Not sure if this is a bug or not...but just thought I would report it anyway.

When using a radio group - I have set column widths for my radio buttons. However, if you do not set a width for the group then nothing is displayed in IE (it is displayed in firefox).

<ext:RadioGroup ID="grpItems" runat="server" ColumnsWidths="80,190">
        <Items>
            <ext:Radio ID="radio1" runat="server" Checked="true" BoxLabel="Radio 1" >
            </ext:Radio>
            <ext:Radio ID="radio2" runat="server" BoxLabel="Radio 2">
            </ext:Radio>
        </Items>
    </ext:RadioGroup>
You need to explicitly add a width to the Radio Group for it to be displayed in IE.

Thanks
Glen