StiMvcDesignerFx not work in my chrome
Posted: Wed Aug 03, 2016 8:57 pm
Why web preview for designing report stimulsoft show message: "To view this page ensure that Adobe Flash Player version 11.1 or greater is installed."
.I am using stimulsoft v2015.2 and flash player 22.0 and Chrome Version:51 but when i want to see designer view to create a report i saw that message.my windows version is 8.1 .
here is my view code in mvc
what should I do? I want to see designer view to design a report
.I am using stimulsoft v2015.2 and flash player 22.0 and Chrome Version:51 but when i want to see designer view to create a report i saw that message.my windows version is 8.1 .
here is my view code in mvc
Code: Select all
@using Stimulsoft.Report;
@using Stimulsoft.Report.Mvc;
@{
ViewBag.Title = "Index";
}
<h2>Index</h2>
@Html.Stimulsoft().StiMvcDesignerFx(new StiMvcDesignerFxOptions()
{
Actions =
{
ExportReport = "ExportReport",
GetReportTemplate = "GetReportTemplate",
GetReportSnapshot = "GetReportSnapshot",
SaveReportTemplate = "SaveReportTemplate",
SaveReportTemplateAs = "SaveReportTemplateAs",
GetLocalization = "GetLocalization",
},
Localization = Url.Content("~/Content/Localization/en.xml"),
})