I Have a Radgrid but I am Unable to delete the Items On Runtime .There is delete option near the values but still the action does not take place. Can anyone tell me why ? Here is my Code
<telerik:RadGrid ID="RadGrid1" runat="server"
AllowPaging="True" GridLines="None"
Skin="Office2007"
DataSourceID="AccessDataSource1" AllowAutomaticDeletes="True"
AllowAutomaticInserts="True" AllowAutomaticUpdates="True" PageSize="8"><MasterTableView AutoGenerateColumns="False" DataSourceID="AccessDataSource1"><RowIndicatorColumn><HeaderStyle Width="20px"></HeaderStyle></RowIndicatorColumn><ExpandCollapseColumn><HeaderStyle Width="20px"></HeaderStyle></ExpandCollapseColumn> <Columns> <telerik:GridBoundColumn DataField="Name" DefaultInsertValue="" HeaderText="Name" SortExpression="Name" UniqueName="Name"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="Email" DefaultInsertValue="" HeaderText="Email" SortExpression="Email" UniqueName="Email"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="Details" DefaultInsertValue="" HeaderText="Details" SortExpression="Details" UniqueName="Details"> </telerik:GridBoundColumn> <telerik:GridBoundColumn DataField="Place" DefaultInsertValue="" HeaderText="Place" SortExpression="Place" UniqueName="Place"> </telerik:GridBoundColumn> <telerik:GridClientDeleteColumn ConfirmText="Are you sure you want to delete this Memeber?" HeaderStyle-Width="35px" ButtonType="ImageButton" ImageUrl="Delete.gif" /> </Columns></MasterTableView>
</telerik:RadGrid>
<asp:AccessDataSource ID="AccessDataSource1" runat="server" DataFile="~/App_Data/admindb.mdb" SelectCommand="SELECT [Name], [Email], [Details], [Place] FROM [Login]" > </asp:AccessDataSource>