New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
Automatic CRUD Operations
RadDataForm provides built-in support for automatic CRUD operations thus allowing you toinsert/update/delete records using very little code. In order to take advantage of this functionalityyou should configure the control as follows:
-
Bind it to a DataSource control that supports automatic data source operations.
-
Add the primary key field from the database table as a DataKeyName.
-
Define the respective edit and insert templates and assign appropriate commands for the buttons.
ASPNET
<telerik:RadDataForm RenderMode="Lightweight" ID="RadDataForm1" DataSourceID="SqlDataSource1" DataKeyNames="ProductID" runat="server">
<ItemTemplate>
ProductName: '<%# Eval("ProductName") %>'
<br />
UnitPrice: <%# Eval("UnitPrice") %>
<br />
UnitsInStock: <%# Eval("UnitsInStock") %>
<telerik:RadButton RenderMode="Lightweight" ID="InitInsertButton" runat="server" ButtonType="SkinnedButton" CausesValidation="False" CommandName="InitInsert" Text="Insert" ToolTip="Insert" />
<br />
<telerik:RadButton RenderMode="Lightweight" ID="EditButton" runat="server" ButtonType="SkinnedButton" CausesValidation="False" CommandName="Edit" Text="Edit" ToolTip="Edit" />
<br />
<telerik:RadButton RenderMode="Lightweight" ID="DeleteButton" runat="server" ButtonType="SkinnedButton" CausesValidation="False" CommandName="Delete" Text="Delete" ToolTip="Delete" />
</ItemTemplate>
<EditItemTemplate>
Edit product with ID: '<%# Eval("ProductID") %>'
<br />
ProductName:
<asp:TextBox ID="ProductNameTextBox" Text='<%# Bind("ProductName") %>' runat="server" />
<br />
UnitPrice:
<telerik:RadNumericTextBox RenderMode="Lightweight" ID="UnitPriceTextBox" DbValue='<%# Bind("UnitPrice") %>' runat="server" />
<br />
UnitsInStock:
<telerik:RadNumericTextBox RenderMode="Lightweight" ID="UnitsInStockTextBox" DbValue='<%# Bind("UnitsInStock") %>' runat="server" />
<telerik:RadButton RenderMode="Lightweight" ID="UpdateButton" runat="server" ButtonType="SkinnedButton" CommandName="Update" Text="Update" ToolTip="Update" />
<telerik:RadButton RenderMode="Lightweight" ID="CancelButton" runat="server" ButtonType="SkinnedButton" CausesValidation="False" CommandName="Cancel" Text="Cancel" ToolTip="Cancel" />
</EditItemTemplate>
<InsertItemTemplate>
Add New Record :
<br />
ProductName:
<asp:TextBox ID="ProductNameTextBox" Text='<%# Bind("ProductName") %>' runat="server" />
<br />
UnitPrice:
<telerik:RadNumericTextBox RenderMode="Lightweight" ID="UnitPriceTextBox" Value='<%# Bind("UnitPrice") %>' runat="server" />
<br />
UnitsInStock:
<telerik:RadNumericTextBox RenderMode="Lightweight" ID="UnitsInStockTextBox" Value='<%# Bind("UnitsInStock") %>' runat="server" />
<telerik:RadButton RenderMode="Lightweight" ID="PerformInsertButton" runat="server" ButtonType="SkinnedButton" CommandName="PerformInsert" Text="Insert" ToolTip="Insert" />
<telerik:RadButton RenderMode="Lightweight" ID="CancelButton" runat="server" ButtonType="SkinnedButton" CausesValidation="False" CommandName="Cancel" Text="Cancel" ToolTip="Cancel" />
</InsertItemTemplate>
</telerik:RadDataForm>
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:NorthwindConnectionString %>"
DeleteCommand="DELETE FROM [Products] WHERE [ProductID] = @ProductID"
InsertCommand="INSERT INTO [Products] ([ProductName], [UnitPrice], [UnitsInStock]) VALUES (@ProductName, @UnitPrice, @UnitsInStock)"
SelectCommand="SELECT * FROM [Products]"
UpdateCommand="UPDATE [Products] SET [ProductName] = @ProductName, [UnitPrice] = @UnitPrice, [UnitsInStock] = @UnitsInStock WHERE [ProductID] = @ProductID">
<DeleteParameters>
<asp:Parameter Name="ProductID" Type="Int32"></asp:Parameter>
</DeleteParameters>
<UpdateParameters>
<asp:Parameter Name="ProductName" Type="String"></asp:Parameter>
<asp:Parameter Name="UnitPrice" Type="Decimal"></asp:Parameter>
<asp:Parameter Name="UnitsInStock" Type="Int16"></asp:Parameter>
<asp:Parameter Name="ProductID" Type="Int32"></asp:Parameter>
</UpdateParameters>
<InsertParameters>
<asp:Parameter Name="ProductName" Type="String"></asp:Parameter>
<asp:Parameter Name="UnitPrice" Type="Decimal"></asp:Parameter>
<asp:Parameter Name="UnitsInStock" Type="Int16"></asp:Parameter>
</InsertParameters>
</asp:SqlDataSource>