SOLVED - Issue with MVC viewer and Chrome
Posted: Fri Nov 29, 2013 9:00 pm
Environment C# .NET 4.5 VS 2012 Update 4 Chrome (v31.0.1650.57) IE11
Hi,
Awesome product so far but I'm a little stumped with this issue. Using the mobile viewer I can see my report and toolbar but I can't use any of the buttons in the toolbar all is fine in IE, using MVC viewer I can see the toolbar but the report just never appears due to a error, but again works fine in IE

I have no idea what I've missed, do you? Here is my view
Thanks!
Hi,
Awesome product so far but I'm a little stumped with this issue. Using the mobile viewer I can see my report and toolbar but I can't use any of the buttons in the toolbar all is fine in IE, using MVC viewer I can see the toolbar but the report just never appears due to a error, but again works fine in IE
Code: Select all
"Uncaught TypeError: Cannot read property 'length' of null" at line 113 of WebResource.axd?d=CC6UhKvo7a7jUnHStCIJAAkR2mWwkvEVmM12bx-ZR1WpkNMVHWZXpZk-nkIwLpNggZcH0sPVWgsvi0r0SvSALBqN9gZOUJyp7QwDI2TZ1wqrZRsSa8p2GzFIIkakMD8aeaqUGhWeCGpdp51wRht6Pyr9jUpNmkARk_2YhvXj85EFp-E9xZAIivJhcjWAz7f-0&t=635213123121677529

I have no idea what I've missed, do you? Here is my view
Code: Select all
@using Stimulsoft.Report.Mvc
@section ScriptHeader
{
@Html.Stimulsoft().RenderMvcViewerScripts()
}
<table>
<tr>
<td style="width: 100%;">
@Html.Stimulsoft().StiMvcViewer(new StiMvcViewerOptions() {
Theme = StiTheme.Windows7,
ActionGetReportSnapshot = Model.ReportName + "SnapshotResult",
ActionViewerEvent = "ViewerEvent",
ActionPrintReport = "PrintReport",
ActionExportReport = "ExportReport",
ActionInteraction = "Interaction"
})
</td>
</tr>
</table>
@section ScriptFooter
{
}