Hello,
In our grid (Version 8.2, .NET 3.5) I want to add a window prompt, asking the user his name, in the BeforeRowDeleted-Handler. How can we get the user-input from the client-side to the server-side? On the server-side we want to add the name to a logfile. The grid is AJAX-enabled.
function UltraWebGrid1_BeforeRowDeleted(gridName, rowId){
var inputUser = window.prompt("Enter your name:", "");
//TODO: Make inputUser available at server-side
}
Thanks in advance for your help.