Search found 4 matches

by russell.pooley
Tue Feb 20, 2024 4:31 pm
Forum: Stimulsoft Reports.JS
Topic: stimulsoft-reports-js/SQL Adapter Serialization Issue
Replies: 2
Views: 443

stimulsoft-reports-js/SQL Adapter Serialization Issue

Hello all, I previously reported an issue with the slow performance of the Blazor version so have now moved on to using the JS version which is going well at the moment aside from a small issue. If we use the following SQL in the query as an example: Select h.Id as hid,t.Name as Template, cast(h.__I...
by russell.pooley
Thu Feb 15, 2024 11:46 am
Forum: Stimulsoft Reports.BLAZOR
Topic: Unhandled exception rendering component: Blockly is not defined
Replies: 5
Views: 1213

Re: Unhandled exception rendering component: Blockly is not defined

We have included the BlazorMonacoYaml and BlazorMonaco packages to our Blazor project which requires the following js files to be included in the index.html before the blazor.webassembly.js file. This is what causes the Blockly issue to appear. <!--BlazorMonaco--> <!--BlazorMonaco Yaml--> <script sr...
by russell.pooley
Thu Feb 15, 2024 11:40 am
Forum: Stimulsoft Reports.BLAZOR
Topic: Unhandled exception rendering component: Blockly is not defined
Replies: 5
Views: 1213

Re: Unhandled exception rendering component: Blockly is not defined

I think this might be something to do with a third party component - BlazorMonacoYaml that we are using.
I will update if it continues to be an issue.
by russell.pooley
Thu Feb 15, 2024 10:52 am
Forum: Stimulsoft Reports.BLAZOR
Topic: Unhandled exception rendering component: Blockly is not defined
Replies: 5
Views: 1213

Unhandled exception rendering component: Blockly is not defined

I have a Blazor WASM page which has the following contents: @page "/Administration/Reports/Designer/{Id?}" @using Stimulsoft.Report.Blazor; @using Stimulsoft.Report @attribute [Authorize] @inject IJSRuntime jsRuntime <div class="content full-height" style="overflow-y: hidden...