Sir I want to ask a question,
I have a rad grid and I have to delete a record by pressing delete(keyboard key), I want to show a rad confirm box before delete any record, Problem is that I have to delete this record by server side, when I pressed delete key so first It will show rad confirm box automatically , then go to event, remember that I am pressing delete short cut key from keyboard ,
here is my code
<ClientSettings EnableRowHoverStyle="true" AllowKeyboardNavigation="true" Selecting-AllowRowSelect="true" ClientEvents-OnKeyPress="keyPress">
Server Side
if (e.CommandName == RadGrid.DeleteCommandName)
{
//Perform action to delete record from database
}