I can't seem to figure out how to detect WHICH export is currently running.
The callback fires no matter which export method I choose, but I have code I wish to execute ONLY on a csv export...
How? Thanks!
ExportReport() callback
Re: ExportReport() callback
Hello.
You could use next code:
Thank you.
You could use next code:
Code: Select all
public ActionResult ViewerExportReport()
{
string format = this.HttpContext.Request.Params["exportformat"];
return StiMvcViewer.ExportReportResult(this.HttpContext);
}
Re: ExportReport() callback
thanks, thats exactly what I needed.
Re: ExportReport() callback
Hello.
We are always glad to help you.
Let us know if you will have any additional question.
Thank you.
We are always glad to help you.
Let us know if you will have any additional question.
Thank you.