GoodMornig,
I'm using RadSpreadsheet in Aspx page with SpreadsheetDocumentProvider and an Excel file.
I have create a javascript that call the save method. I write it below
function exportFile() {
var spreadsheet = $find("<%= RadSpreadsheet1.ClientID %>");
spreadsheet.save();
}
Is there a post save event ( client or server side) that I can Intercept?
I would like get the file saved on server and send it to client.
Many thanks
Claudia