I have the next code:
<telerik:GridTemplateColumn
HeaderText="<%$ Resources:Nervia.Plus.Axon, NUMERO_SERIE %>"
UniqueName="NUMEROSERIE"
AllowFiltering="True"
>
<ItemTemplate>
<%# Eval("Articulos.NUMEROSERIE")%>
</ItemTemplate>
<EditItemTemplate>
<telerik:RadComboBox
ID="rcbNumeroSerie"
runat="server"
Width="130px"
DropDownWidth="560px"
ShowMoreResultsBox="True"
EnableVirtualScrolling="True"
Filter="Contains">
<HeaderTemplate>
<table style="width: 360px" cellspacing="0" cellpadding="0">
<tr>
<td style="width: 110px;"> <asp:Label ID="lbl1" runat="server" Text="<%$ Resources:Nervia.Plus.Axon, MARCA %>" Font-Bold="True"></asp:Label></td>
<td style="width: 200px;"> <asp:Label ID="lbl2" runat="server" Text="<%$ Resources:Nervia.Plus.Axon, MODELO %>" Font-Bold="True"></asp:Label></td>
<td style="width: 200px;"> <asp:Label ID="Label2" runat="server" Text="<%$ Resources:Nervia.Plus.Axon, NUMERO_SERIE %>" Font-Bold="True"></asp:Label></td>
</tr>
</table>
</HeaderTemplate>
<ItemTemplate>
<table style="width: 360px" cellspacing="0" cellpadding="0">
<tr>
<td style="width: 100px;">
<%# DataBinder.Eval(Container, "Attributes['MARCA']")%>
</td>
<td style="width: 200px;">
<%# DataBinder.Eval(Container, "Attributes['MODELO']")%>
</td>
<td style="width: 200px;">
<%# DataBinder.Eval(Container, "Text")%>
</td>
</tr>
</table>
</ItemTemplate>
</telerik:RadComboBox>
</EditItemTemplate>
<HeaderStyle HorizontalAlign="Center" VerticalAlign="Middle" Width="140px" />
<ItemStyle HorizontalAlign="Center" VerticalAlign="Middle" Width="140px" />
</telerik:GridTemplateColumn>
the values of radcombobox it's loaded in the server but when i enter in insert mode and load the newValues, numeroSerie don't show in the array, even newValues["NUMEROSERIE"] = null :S
thanks for your helps and sorry for my english.
<telerik:GridTemplateColumn
HeaderText="<%$ Resources:Nervia.Plus.Axon, NUMERO_SERIE %>"
UniqueName="NUMEROSERIE"
AllowFiltering="True"
>
<ItemTemplate>
<%# Eval("Articulos.NUMEROSERIE")%>
</ItemTemplate>
<EditItemTemplate>
<telerik:RadComboBox
ID="rcbNumeroSerie"
runat="server"
Width="130px"
DropDownWidth="560px"
ShowMoreResultsBox="True"
EnableVirtualScrolling="True"
Filter="Contains">
<HeaderTemplate>
<table style="width: 360px" cellspacing="0" cellpadding="0">
<tr>
<td style="width: 110px;"> <asp:Label ID="lbl1" runat="server" Text="<%$ Resources:Nervia.Plus.Axon, MARCA %>" Font-Bold="True"></asp:Label></td>
<td style="width: 200px;"> <asp:Label ID="lbl2" runat="server" Text="<%$ Resources:Nervia.Plus.Axon, MODELO %>" Font-Bold="True"></asp:Label></td>
<td style="width: 200px;"> <asp:Label ID="Label2" runat="server" Text="<%$ Resources:Nervia.Plus.Axon, NUMERO_SERIE %>" Font-Bold="True"></asp:Label></td>
</tr>
</table>
</HeaderTemplate>
<ItemTemplate>
<table style="width: 360px" cellspacing="0" cellpadding="0">
<tr>
<td style="width: 100px;">
<%# DataBinder.Eval(Container, "Attributes['MARCA']")%>
</td>
<td style="width: 200px;">
<%# DataBinder.Eval(Container, "Attributes['MODELO']")%>
</td>
<td style="width: 200px;">
<%# DataBinder.Eval(Container, "Text")%>
</td>
</tr>
</table>
</ItemTemplate>
</telerik:RadComboBox>
</EditItemTemplate>
<HeaderStyle HorizontalAlign="Center" VerticalAlign="Middle" Width="140px" />
<ItemStyle HorizontalAlign="Center" VerticalAlign="Middle" Width="140px" />
</telerik:GridTemplateColumn>
the values of radcombobox it's loaded in the server but when i enter in insert mode and load the newValues, numeroSerie don't show in the array, even newValues["NUMEROSERIE"] = null :S
thanks for your helps and sorry for my english.