Hi,
I have a RadGrid with delete and edit link as one of its columns. If i edit a record, it opens in Editform on grid.
When working on edit form of rad grid if I click on Delete link on radgrid at the back of editform, it still performs the delete operation
even though one record is in edit mode.
following is the way by which I am declaring the Delete link.
Thanks
Pinkey
I have a RadGrid with delete and edit link as one of its columns. If i edit a record, it opens in Editform on grid.
When working on edit form of rad grid if I click on Delete link on radgrid at the back of editform, it still performs the delete operation
even though one record is in edit mode.
following is the way by which I am declaring the Delete link.
<telerik:GridTemplateColumn UniqueName="DeleteColumn" ItemStyle-VerticalAlign="Middle" ItemStyle-HorizontalAlign="Center">
<ItemTemplate>
<asp:LinkButton runat="server" CausesValidation="false" OnClientClick ="if (confirm('Are You Sure You Wish To Delete This Item?'))return true; else return false;" CommandName="Delete" Text="Delete" ID="btnDelete" ForeColor="Blue"></asp:LinkButton> </ItemTemplate>
</telerik:GridTemplateColumn>
Please guide me how i can avoid this?
Thanks
Pinkey