Code: Select all
@Html.Stimulsoft().StiMvcMobileDesigner( "MvcMobileDesigner1",
new StiMvcMobileDesignerOptions
{
ShowSaveDialog = false,
ActionExitDesigner = "ExitDesigner",
ActionGetReportTemplate = "GetReportTemplate",
ActionGetReportSnapshot = "GetReportSnapshot",
ActionOpenReportTemplate = "OpenReportTemplate",
ActionSaveReportTemplate = "SaveReportTemplate",
ActionDesignerEvent = "DesignerEvent",
ShowFileMenuClose = false,
ShowFileMenuNew = false,
ShowFileMenuOpen = false,
Localization = "Localizations/en.xml"
})
and in the controller
Code: Select all
public ActionResult ExitDesigner()
{
return RedirectToAction("Index");
}
Please help.
Thanks,
Chris