I'm sure there is a simple solution to this one, but when i use a RadComboBox in an ASP.NET GridView the RadComboBox becomes disabled. This RadComboBox is used as a TemplateField. The dropdowns work fine in the GridView, but not the RadComboBox.
| <asp:GridView ID="gvCPT" runat="server" CellPadding="2" OnRowCommand="gvCPT_RowCommand" OnRowDataBound="gvCPT_RowDataBound" ForeColor="#333333" DataKeyNames="Value" AutoGenerateColumns="false" GridLines="None"> |
| <Columns> |
| <asp:TemplateField HeaderText="Qty"> |
| <ItemTemplate> |
| <telerik:RadComboBox ID="ddlQty" Width="40px" runat="server" Skin="Outlook" style="text-align: right" AllowCustomText="True"> |
| <CollapseAnimation Duration="200" Type="OutQuint" /> |
| <Items> |
| <telerik:RadComboBoxItem runat="server" Text="1" /> |
| <telerik:RadComboBoxItem runat="server" Text="2" /> |
| <telerik:RadComboBoxItem runat="server" Text="3" /> |
| <telerik:RadComboBoxItem runat="server" Text="4" /> |
| <telerik:RadComboBoxItem runat="server" Text="5" /> |
| </Items> |
| </telerik:RadComboBox> |
| </ItemTemplate> |
| <HeaderStyle HorizontalAlign="Center" /> |
| </asp:TemplateField> |
| </Columns> |
| </Columns> |
| </asp:GridView> |