I have a page that has a RadFormDecorator on it which is decorating CheckBoxes.  I also have a RadComboBox on the page where I am putting CheckBoxes in the ItemTemplate.  When the page renders the CheckBoxes are not visible.  If I turn off the CheckBox decoration in the RadFormDecorator they appear.
    
                                | <rad:RadFormDecorator ID="RadFormDecorator1" runat="server" DecorationZoneID="BodyContents" DecoratedControls="Buttons, CheckBoxes, RadioButtons" /> | 
| <rad:RadComboBox ID="rcbTradeStatus" runat="server" DataValueField="pkTradeStatus" DataTextField="sStatusDesc" Width="300px" HighlightTemplatedItems="true" AllowCustomText="true"> | 
| <ItemTemplate> | 
| <asp:CheckBox ID="cbTradeStatus" runat="server" TextAlign="Right" Text='<%# Eval("sStatusDesc") %>' /> | 
| </ItemTemplate> | 
| </rad:RadComboBox> |