StiMvcMobileDesigner ActionExitDesigner Not working
Posted: Sat Mar 07, 2015 6:30 pm
I have the following in my view:
and in the controller
However when I click Exit on the designer it returns to the original page and does not call ExitDesigner.
Please help.
Thanks,
Chris
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