Hi all,

Short story: I am using update proxy to commit changes in gridpanel (store) to database. In the update proxy handler (ashx code) I can successfully build confirmation list and set it in StoreResponseData variable as below.

Response sr = new Response(true);
...
StoreResponseData response = new StoreResponseData();
response.Confirmation = confirmationList;
sr.Data = response.ToString();
...
Update proxy is successfully fired after calling the gridpanel.save() method from a button click event handler.

The question is: How can I access the response (StoreResponseData) to process the confirmationList? I read somewhere in the forum that it is automatically created as e.confirmation or sth like this. The real question is which event handler's "e" is it? ;-)) I hope I could ask the question correctly.

Short question: How to handle response from updateproxy in 'success' case.

Regards.