Hallo,
I have a Problem with the GridAutoCompleteColumn in BatchMode.
<telerik:GridAutoCompleteColumn DataField="Hauptwort" InputType="Text" DataSourceID="dsHauptwort" DataTextField="Bezeichnung" DataValueField="Id" FilterControlAltText="Filter HauptwortId column" HeaderText="Hauptwort" SortExpression="Hauptwort" UniqueName="Hauptwort"></telerik:GridAutoCompleteColumn>
I have multiple GridAutoCompleteColumn Columns. If I change and save all the columns, then everything works. But if I change only one column, he no longer has the old values in the other Columns.
Protected Sub RgdArtikelbezeichnung_UpdateCommand(ByVal source As Object, ByVal e As GridCommandEventArgs) Handles rgdArtikelbezeichnung.UpdateCommand Dim argument As GridBatchEditingEventArgument = TryCast(e.CommandArgument, GridBatchEditingEventArgument) Dim oldValues As Hashtable = argument.OldValues Dim newValues As Hashtable = argument.NewValues
In OldValues and newValues is the Value "Hauptwort" Nothing , when I, for example, the column change "Hauptwort2".
Is this er error in the Grid or another problem?
Thanks