<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[JSREPORT BROWSER CLIENT CDN]]></title><description><![CDATA[<p>In using the browser cdn client I noticed that I could not open the rendered pdf in another window using the window.open(renderedpdf) (I was using the blob constructor to do this)</p>
<pre><code> jsreport.serverUrl = &quot;https://hostserver.net/&quot;
        jsreport.headers['Authorization'] = &quot;Basic &quot; + btoa(&quot;email@gmail.com:password&quot;)
    
        console.log(jsreport.serverUrl )
        const report = await jsreport.render({
            template: {
                name: 'stockrecon'    
            },
            data: {
            someData: data
            }
        });

const pdfBlob = new Blob([ report.content], { type: 'application/pdf' });
            const pdfUrl = URL.createObjectURL(pdfBlob);
            window.open(pdfUrl, &quot;_blank&quot;);
</code></pre>
<p>. I could however download the pdf using report.download('renderedpdf.pdf'). Please can I get any help in this regard?</p>
]]></description><link>https://forum.jsreport.net/topic/2819/jsreport-browser-client-cdn</link><generator>RSS for Node</generator><lastBuildDate>Mon, 18 May 2026 22:25:59 GMT</lastBuildDate><atom:link href="https://forum.jsreport.net/topic/2819.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 07 Jun 2023 10:30:53 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to JSREPORT BROWSER CLIENT CDN on Wed, 07 Jun 2023 11:22:09 GMT]]></title><description><![CDATA[<p>In using the browser cdn client I noticed that I could not open the rendered pdf in another window using the window.open(renderedpdf) (I was using the blob constructor to do this)</p>
<pre><code> jsreport.serverUrl = &quot;https://hostserver.net/&quot;
        jsreport.headers['Authorization'] = &quot;Basic &quot; + btoa(&quot;email@gmail.com:password&quot;)
    
        console.log(jsreport.serverUrl )
        const report = await jsreport.render({
            template: {
                name: 'stockrecon'    
            },
            data: {
            someData: data
            }
        });

const pdfBlob = new Blob([ report.content], { type: 'application/pdf' });
            const pdfUrl = URL.createObjectURL(pdfBlob);
            window.open(pdfUrl, &quot;_blank&quot;);
</code></pre>
<p>. I could however download the pdf using report.download('renderedpdf.pdf'). Please can I get any help in this regard?</p>
]]></description><link>https://forum.jsreport.net/post/12190</link><guid isPermaLink="true">https://forum.jsreport.net/post/12190</guid><dc:creator><![CDATA[Sesughter01]]></dc:creator><pubDate>Wed, 07 Jun 2023 11:22:09 GMT</pubDate></item><item><title><![CDATA[Reply to JSREPORT BROWSER CLIENT CDN on Invalid Date]]></title><description><![CDATA[<p>What version of the browser client do you use?<br />
What do you see in the F12 console errors/warns?</p>
]]></description><link>https://forum.jsreport.net/post/12191</link><guid isPermaLink="true">https://forum.jsreport.net/post/12191</guid><dc:creator><![CDATA[jan_blaha]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Reply to JSREPORT BROWSER CLIENT CDN on Invalid Date]]></title><description><![CDATA[<p><img src="/uploads/files/1686229786849-f12-response-resized.png" alt="0_1686229786674_f12 response.png" class="img-responsive img-markdown" /></p>
]]></description><link>https://forum.jsreport.net/post/12197</link><guid isPermaLink="true">https://forum.jsreport.net/post/12197</guid><dc:creator><![CDATA[Sesughter01]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Reply to JSREPORT BROWSER CLIENT CDN on Invalid Date]]></title><description><![CDATA[<p>browser client cdn<br />
&lt;script src=&quot;<a href="https://unpkg.com/@jsreport/browser-client/dist/jsreport.umd.js" rel="nofollow">https://unpkg.com/@jsreport/browser-client/dist/jsreport.umd.js</a>&quot;&gt;&lt;/script&gt;</p>
]]></description><link>https://forum.jsreport.net/post/12198</link><guid isPermaLink="true">https://forum.jsreport.net/post/12198</guid><dc:creator><![CDATA[Sesughter01]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Reply to JSREPORT BROWSER CLIENT CDN on Invalid Date]]></title><description><![CDATA[<p>You need to change</p>
<pre><code class="language-js">const pdfBlob = new Blob([ report.content], { type: 'application/pdf' });
</code></pre>
<p>to</p>
<pre><code class="language-js">const pdfBlob = await report.response.blob()
</code></pre>
<p>However, you can minimize code to just</p>
<pre><code class="language-js">report.openInWindow({ title: 'myreport' })    
</code></pre>
<p>The docs<br />
<a href="https://jsreport.net/learn/browser-client" rel="nofollow">https://jsreport.net/learn/browser-client</a></p>
]]></description><link>https://forum.jsreport.net/post/12201</link><guid isPermaLink="true">https://forum.jsreport.net/post/12201</guid><dc:creator><![CDATA[jan_blaha]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Reply to JSREPORT BROWSER CLIENT CDN on Invalid Date]]></title><description><![CDATA[<p>The open window is not working only download is working<img src="/uploads/files/1686242346660-failed-error-message-resized.png" alt="0_1686242344708_failed error message.png" class="img-responsive img-markdown" /></p>
]]></description><link>https://forum.jsreport.net/post/12202</link><guid isPermaLink="true">https://forum.jsreport.net/post/12202</guid><dc:creator><![CDATA[Sesughter01]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Reply to JSREPORT BROWSER CLIENT CDN on Invalid Date]]></title><description><![CDATA[<p>Issue resolved thanks so much . I was downloading as well as opening new window to render . Apparently you can only do one</p>
]]></description><link>https://forum.jsreport.net/post/12203</link><guid isPermaLink="true">https://forum.jsreport.net/post/12203</guid><dc:creator><![CDATA[Sesughter01]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Reply to JSREPORT BROWSER CLIENT CDN on Invalid Date]]></title><description><![CDATA[<p><a class="plugin-mentions-a" href="https://forum.jsreport.net/uid/2568">@Sesughter01</a> hmm makes sense to support both, i have opened <a href="https://github.com/jsreport/jsreport/issues/1067" rel="nofollow">new issue</a> to support it. thanks.</p>
]]></description><link>https://forum.jsreport.net/post/12204</link><guid isPermaLink="true">https://forum.jsreport.net/post/12204</guid><dc:creator><![CDATA[bjrmatos]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Reply to JSREPORT BROWSER CLIENT CDN on Invalid Date]]></title><description><![CDATA[<p>New Problem being experienced .</p>
<ol>
<li>F12 result in console.log(data)<br />
{<br />
.....<br />
someData: data<br />
}<br />
<img src="/uploads/files/1686306913548-f12-result-of-data-passed-to-somedata-property-resized.png" alt="0_1686306911385_f12 result of data passed to someData property.png" class="img-responsive img-markdown" /></li>
</ol>
]]></description><link>https://forum.jsreport.net/post/12207</link><guid isPermaLink="true">https://forum.jsreport.net/post/12207</guid><dc:creator><![CDATA[Sesughter01]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Reply to JSREPORT BROWSER CLIENT CDN on Invalid Date]]></title><description><![CDATA[<ol start="2">
<li>Rendered result from<br />
report.openInWindow({ title: 'Stock Register' })</li>
</ol>
<p><img src="/uploads/files/1686307032839-rendered-pdf-resized.png" alt="0_1686307031999_rendered pdf.png" class="img-responsive img-markdown" /></p>
]]></description><link>https://forum.jsreport.net/post/12208</link><guid isPermaLink="true">https://forum.jsreport.net/post/12208</guid><dc:creator><![CDATA[Sesughter01]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Reply to JSREPORT BROWSER CLIENT CDN on Invalid Date]]></title><description><![CDATA[<ol start="3">
<li>Rendered results from jsreport online</li>
</ol>
<p><img src="/uploads/files/1686307072760-rendered-result-on-jsreoprt-online-resized.png" alt="0_1686307071734_rendered result on jsreoprt online.png" class="img-responsive img-markdown" /></p>
]]></description><link>https://forum.jsreport.net/post/12209</link><guid isPermaLink="true">https://forum.jsreport.net/post/12209</guid><dc:creator><![CDATA[Sesughter01]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Reply to JSREPORT BROWSER CLIENT CDN on Invalid Date]]></title><description><![CDATA[<p>The report doesn't seem to have filled input data.<br />
Something is wrong with your report template or provided data I guess.</p>
<p>You can try to open the profiler in the jsreport studio and switch to &quot;Full profiling&quot;.<br />
<img src="/uploads/files/1686589778458-upload-f51b7d71-cc18-4217-8875-965bec991f22-resized.png" alt="0_1686589776893_upload-f51b7d71-cc18-4217-8875-965bec991f22" class="img-responsive img-markdown" /><br />
Then you can profile the running report and check what data are actually coming to the report.</p>
<p>Please refer to the documentation here<br />
<a href="https://jsreport.net/learn/studio" rel="nofollow">https://jsreport.net/learn/studio</a></p>
]]></description><link>https://forum.jsreport.net/post/12213</link><guid isPermaLink="true">https://forum.jsreport.net/post/12213</guid><dc:creator><![CDATA[jan_blaha]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Reply to JSREPORT BROWSER CLIENT CDN on Invalid Date]]></title><description><![CDATA[<p><img src="/uploads/files/1687177150760-request-data-on-stockrecon-resized.png" alt="0_1687177149900_request data on stockrecon.png" class="img-responsive img-markdown" /></p>
<p>this is the request data input from the online instance of the jsreport . This from running the report online but how do I see data from the external calls?</p>
]]></description><link>https://forum.jsreport.net/post/12270</link><guid isPermaLink="true">https://forum.jsreport.net/post/12270</guid><dc:creator><![CDATA[Sesughter01]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Reply to JSREPORT BROWSER CLIENT CDN on Invalid Date]]></title><description><![CDATA[<p>The profiler feature for checking running remote requests can be opened from the startup page using &quot;open profiler&quot; button.</p>
<p><img src="/uploads/files/1687191408653-upload-8e756a43-d8ce-42a7-9df4-1b2a53175e4a-resized.png" alt="0_1687191406943_upload-8e756a43-d8ce-42a7-9df4-1b2a53175e4a" class="img-responsive img-markdown" /></p>
]]></description><link>https://forum.jsreport.net/post/12273</link><guid isPermaLink="true">https://forum.jsreport.net/post/12273</guid><dc:creator><![CDATA[jan_blaha]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Reply to JSREPORT BROWSER CLIENT CDN on Invalid Date]]></title><description><![CDATA[<p><img src="/uploads/files/1687198564765-startpage-resized.png" alt="0_1687198563982_startpage.png" class="img-responsive img-markdown" /></p>
<p>From what appears here on my startup page it means all the calls to my template stockrecon have not been received because I made a call to this   jsreport.serverUrl = &quot;<a href="https://vnicom1.jsreportonline.net/" rel="nofollow">https://vnicom1.jsreportonline.net/</a>&quot; today</p>
]]></description><link>https://forum.jsreport.net/post/12277</link><guid isPermaLink="true">https://forum.jsreport.net/post/12277</guid><dc:creator><![CDATA[Sesughter01]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Reply to JSREPORT BROWSER CLIENT CDN on Invalid Date]]></title><description><![CDATA[<p>ok so apparently I had to change my login details to another account belonging to our team. However now I can't view the request data it brings up the error message when I try.<br />
<img src="/uploads/files/1687202423745-full-mode-resized.png" alt="0_1687202422795_full mode.png" class="img-responsive img-markdown" /></p>
]]></description><link>https://forum.jsreport.net/post/12278</link><guid isPermaLink="true">https://forum.jsreport.net/post/12278</guid><dc:creator><![CDATA[Sesughter01]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[Reply to JSREPORT BROWSER CLIENT CDN on Invalid Date]]></title><description><![CDATA[<p>Yes, you need to do what it says. Close the dialog, switch to the &quot;Full profiling&quot; and wait for the incoming request to pop up.</p>
]]></description><link>https://forum.jsreport.net/post/12279</link><guid isPermaLink="true">https://forum.jsreport.net/post/12279</guid><dc:creator><![CDATA[jan_blaha]]></dc:creator><pubDate>Invalid Date</pubDate></item></channel></rss>