SecurityError: The operation is insecure.
len = arr.length;
I'm wondering if this might be some kind of issue with scripts loading out of sequence? Here's my "report" page....
Oh, and another detail I think should be mentioned: this app is havily dependent on jQueryMobile. Perhaps that has something to do with the issue we are seeing (though that doesn't really explain why the 'Fx' versions of these calls all work right.
==================================================
Code: Select all
@model myApp.DAL.tblReport
@using System.Web.UI.WebControls;
@using Stimulsoft.Report.Mvc
@{
ViewBag.Title = "Report";
}
<div id="reportPanel" style="height: 100%; width: 100%;">
@Html.Stimulsoft().RenderMvcViewerScripts()
@Html.Stimulsoft().StiMvcViewer(new StiMvcViewerOptions() {
ActionGetReportSnapshot = "GetReportSnapshot",
ActionExportReport = "ExportReport",
Width = Unit.Percentage(100),
Height = Unit.Pixel(800)
})
</div>