Hi,
The only thing the Grid triggers after enter key is the column's ClientSideAfterEdit event. You must handle this event with JavaScript. Inside your JavaScript handler you can proceed to trigger a server event, that part no longer has anything to do with the Grid. We have a ScriptEvent control that allows you to trigger server event from JavaScript, you can take a look of that control for this part.
When you trigger server event from ClieentSideAfterEdit event, make sure you trigger it with a delay. For example, the following code triggers without a delay and it won't work:
Code: JavaScript
function your_client_side_end_edit_handler()
{
your_code_to_trigger_server_event();
}
Instead you would use it this way:
Code: JavaScript
function your_client_side_end_edit_handler()
{
setTimeout(function()
{
your_code_to_trigger_server_event();
}, 10);
}
Hope this helps. Please let me know if you have any more questions.
Thanks!