I have a Mvc Web App And I use Stimulsoft for Reporting in my app
How I can Switch form stiMvcViewer to StiMvcDesigner with same datasource in my viewer that my end user can design her/his report.... I want to I do exactly Like stimul Live demo in http://mobile.stimulsoft.com/ with design button
My View Like Below:
Code: Select all
@Html.Stimulsoft().StiMvcViewer("MvcViewer", options: new StiMvcViewerOptions
{
Theme = StiTheme.Office2013WhiteOrange,
Actions =
{
GetReportSnapshot = "GetReportSnapshotForDaily",
ViewerEvent = "ViewerEvent",
DesignReport = "GetReportTemplate"
},
Toolbar =
{
ShowDesignButton=true,
},
Server =
{
UseRelativeUrls = true
}
})
public ActionResult GetReportTemplate()
{
//what do i write here...
}