I want the grid to have Edit,Add,Delete button or selection but it wont let me ...
Here is the ascx
<%@ Control language="C#" Inherits="DotNetNuke.Modules.Maintenance_bitaddresses.View" AutoEventWireup="false" Codebehind="View.ascx.cs" %>
<%@ Register assembly="Telerik.Web.UI" namespace="Telerik.Web.UI" tagprefix="telerik" %>
<telerik:RadGrid ID="RadGrid1" runat="server" CellSpacing="0"
DataSourceID="SqlDataSourceAddresses" GridLines="None"
AutoGenerateColumns="False" AllowAutomaticDeletes="True"
AllowAutomaticInserts="True" AllowAutomaticUpdates="True"
AutoGenerateDeleteColumn="True" AutoGenerateEditColumn="True">
<mastertableview datasourceid="SqlDataSourceAddresses"
datakeynames="CryptoAddress,UserID">
<EditItemTemplate>
<telerik:RadTextBox ID="RadTextBox1" Runat="server" LabelWidth="64px"
Resize="None" Text='<%# Bind("CryptoAddress") %>' Width="160px">
</telerik:RadTextBox>
</EditItemTemplate>
<CommandItemSettings AddNewRecordText="Add" CancelChangesText="Cancel"
SaveChangesText="Save" ShowCancelChangesButton="True"
ShowExportToCsvButton="True" ShowSaveChangesButton="True" />
<Columns><telerik:GridBoundColumn DataField="CryptoAddress"
FilterControlAltText="Filter CryptoAddress column" HeaderText="Address"
ReadOnly="True" SortExpression="CryptoAddress" UniqueName="CryptoAddress"></telerik:GridBoundColumn><telerik:GridBoundColumn
DataField="AddressDescription"
FilterControlAltText="Filter AddressDescription column"
HeaderText="Description" SortExpression="AddressDescription"
UniqueName="AddressDescription"></telerik:GridBoundColumn><telerik:GridBoundColumn
DataField="UserID" DataType="System.Int32" Display="False"
FilterControlAltText="Filter UserID column" HeaderText="UserID" ReadOnly="True"
SortExpression="UserID" UniqueName="UserID"></telerik:GridBoundColumn></Columns></mastertableview>
</telerik:RadGrid>
<asp:SqlDataSource ID="SqlDataSourceAddresses" runat="server"
ConnectionString="<%$ ConnectionStrings:bitratemeConnectionString %>"
SelectCommand="SELECT [CryptoAddress], [AddressDescription], [UserID] FROM [user_cryptoaddresses] WHERE ([UserID] = @UserID)"
ConflictDetection="CompareAllValues"
DeleteCommand="DELETE FROM [user_cryptoaddresses] WHERE [CryptoAddress] = @original_CryptoAddress AND [UserID] = @original_UserID AND (([AddressDescription] = @original_AddressDescription) OR ([AddressDescription] IS NULL AND @original_AddressDescription IS NULL))"
InsertCommand="INSERT INTO [user_cryptoaddresses] ([CryptoAddress], [AddressDescription], [UserID]) VALUES (@CryptoAddress, @AddressDescription, @UserID)"
OldValuesParameterFormatString="original_{0}"
UpdateCommand="UPDATE [user_cryptoaddresses] SET [AddressDescription] = @AddressDescription WHERE [CryptoAddress] = @original_CryptoAddress AND [UserID] = @original_UserID AND (([AddressDescription] = @original_AddressDescription) OR ([AddressDescription] IS NULL AND @original_AddressDescription IS NULL))">
<DeleteParameters>
<asp:Parameter Name="original_CryptoAddress" Type="String" />
<asp:Parameter Name="original_UserID" Type="Int32" />
<asp:Parameter Name="original_AddressDescription" Type="String" />
</DeleteParameters>
<InsertParameters>
<asp:Parameter Name="CryptoAddress" Type="String" />
<asp:Parameter Name="AddressDescription" Type="String" />
<asp:Parameter Name="UserID" Type="Int32" />
</InsertParameters>
<SelectParameters>
<asp:Parameter Name="UserID" Type="Int32" />
</SelectParameters>
<UpdateParameters>
<asp:Parameter Name="AddressDescription" Type="String" />
<asp:Parameter Name="original_CryptoAddress" Type="String" />
<asp:Parameter Name="original_UserID" Type="Int32" />
<asp:Parameter Name="original_AddressDescription" Type="String" />
</UpdateParameters>
</asp:SqlDataSource>