Dear Viktor to me happen a most strange thing. i have a radcombo inside radgrid (inside RadAjaxPanel) in edittemplate like u said.
<EditItemTemplate>
<telerik:RadComboBox ID="rcbStatoRecUpd" runat="server"
OnSelectedIndexChanged="rcbStatoRecUpd_SelectedIndexChanged"
DataSourceID="ObjLoadStatoRecAF"
DataValueField="cod_stato"
DataTextField="descr_stato"
SelectedValue='<%# Bind("stato_rec") %>'
AppendDataBoundItems="false" DropDownWidth="150px" AutoPostBack="true">
<Items>
<telerik:RadComboBoxItem Text="Seleziona" Value=""/>
</Items>
</telerik:RadComboBox>
</EditItemTemplate>
in the event rcbStatoRecUpd_SelectedIndexChanged all work good and i see new selectedvalue and the new text.
BUT.....
in RadGrid1_UpdateCommand HAPPEN THE STRANGE THING.....
Dim editedItem As GridEditableItem = TryCast(e.Item, GridEditableItem)
Dim rcbStatoRecUpd As RadComboBox = CType(editedItem.FindControl("rcbStatoRecUpd"), RadComboBox)
Dim statorec As String = rcbStatoRecUpd.SelectedValue().ToString
Dim descrstatorec As String = rcbStatoRecUpd.Text.ToString()
**************************************************************************
descrstatorec HAVE THE NEW TEXT BUT statorec STILL HAVE the OLDVALUE.
WHERE I MAKE ERROR ? what's wrong ?
ty
Maurizio Brusini