Hello Telerik-team,
I have a Question to EditMode="InPlace" and Update-Funktion.
We want to use the EditMode="InPlace" und update the Database via an objectDataSource but it doesn't work:
ASPX
When we call the Update Linkbutton after editing the fields, the method UpdateZahlungsmoeglichkeiten won't be called.
Where is the error?
regards
Christian
I have a Question to EditMode="InPlace" and Update-Funktion.
We want to use the EditMode="InPlace" und update the Database via an objectDataSource but it doesn't work:
ASPX
| <telerik:RadGrid DataSourceID="odsZahlungsmoeglichkeiten" ID="RadGrid1" runat="server" > |
| <MasterTableView DataKeyNames="ZahlungsID" EditMode="InPlace" > |
| <Columns> |
| <telerik:GridEditCommandColumn EditText="bearbeiten" /> |
| </Columns> |
| </MasterTableView> |
| <ClientSettings> |
| <ClientEvents OnRowDblClick="RowDblClick" /> |
| </ClientSettings> |
| </telerik:RadGrid> |
| <asp:ObjectDataSource ID="odsZahlungsmoeglichkeiten" runat="server" SelectMethod="GetZahlungsmoeglichkeiten" |
| TypeName="BSP.Adapter.AdpKunde" |
| OldValuesParameterFormatString="original_{0}" |
| DataObjectTypeName="System.Collections.Generic.List`1[[BSP.Adapter.DtoKundeZahlungsmoeglichkeit, BSP.Adapter, Version=1.0.0.3, Culture=neutral, PublicKeyToken=null]]" |
| UpdateMethod="UpdateZahlungsmoeglichkeiten"> |
| <SelectParameters> |
| <asp:SessionParameter DefaultValue="" Name="kundeID" SessionField="KundeID" |
| Type="Int32" /> |
| </SelectParameters> |
| </asp:ObjectDataSource> |
When we call the Update Linkbutton after editing the fields, the method UpdateZahlungsmoeglichkeiten won't be called.
Where is the error?
regards
Christian