Seems like this was already discussed
https://forum.jsreport.net/topic/3322/nchrome_crashpad_handler-database-is-required/2
Posts made by admin
-
RE: Text in a cell is not visible as whole: html-to-xlsx
Thanks for posting. We have now analysed it more deeply.
The problem is that with an empty cell, we still render an empty tag (<v></v>
) to the Office XML, which prevents the overflow from the previous cell.We will fix this here
https://github.com/jsreport/jsreport/issues/1242 -
RE: Azure FunctionApp - Starter Kit issues
I apologize for the delay. I had to make sure Azure broke things really badly...
Unfortunately, Azure changed the libraries installed in the Azure Functions runtime. This affected Chromium, which currently doesn't work there. The only option is to use Docker or a premium plan and install the missing libs.
However, the better option is now to use Azure Container Apps. This lets you serverless host jsreport in a container with no missing lib issues.
I've updated docs and added this tutorial on how to get started with running jsreport in the Azure Container App.
https://jsreport.net/learn/azure-container-apps -
RE: jsReport v3.8.0 Display Issue: Header Overlapping with Body
Please share a minimal playground demo replicating the issue.
https://playground.jsreport.net/ -
RE: jsreport Online with SQL Server
One credit is 1 second spent in the container that is processing your request. It is calculated based on milliseconds.
It is replanishing based on your renewal date. Check the "created on" field in the settings of your profile.
The studio browser requests are free of charge so you are free to play with your worskspace as much as needed. -
RE: jsreport Online with SQL Server
Will we see a significant performance increase when we switch to the paid version?
No, the containers are the same.
Could this timeout be related to the jsreport.npm.require?
Yes, this signals that the
npm install
of the module timed out.
This can be some kind of transient network/npm error.
It seems to work fine for me also in your account, please try later again. -
RE: jsreport Online with SQL Server
Ah, sorry, I missed that this is related to jsreportonline. The config updates are not possible in jsreportonline, unfortunately.
The problem is the time it takes to require the mssql module? These calls take typically just some milliseconds. The
jsreport.npm.require
will need to install module for the first time what may take some seconds, but the following require should be fast enough. -
RE: jsreport Online with SQL Server
I think it won't help.
What could decrease the cost of the
require
call is adding config{ "sandbox": { "isolateModules": false } }
-
RE: Report Extension - Migrate between versions?
@apanin-locusview It is in the backlog, but with a lower priority than other things we are currently working on.
-
RE: jsreport Online with SQL Server
What exact errors or problems do you encounter? Please elaborate...
You should be able to install mssl npm package using jsreport npm extension also in jsreportonline
https://jsreport.net/learn/npmNote the jsreport should also work in the Azure App Service
https://jsreport.net/learn/azure-web-apps -
RE: Report Extension - Migrate between versions?
4.7 -> 4.8
added column jsreport_ReportType.meta as string4.8 -> 4.9
none -
RE: How to Display Base64 Image (Logo) in Microsoft Excel Using
Please share playground demo.
-
RE: How to Display Base64 Image (Logo) in Microsoft Excel Using
jsreport xlsx recipe provides
xlsxImage
helper to embed base64 image to the specific position, however, it needs further study..The link to the documentation
https://jsreport.net/learn/xlsxA demo with you case
https://playground.jsreport.net/w/anon/LyTAxE8t -
RE: Error in 4.9.0
Alter your postgres schema and add the column jsreport_ReportType.meta as string, the same type as other columns there.
-
RE: Report Extension - Migrate between versions?
I see.
The jsreport is very stable and mature, and the schema changes are minimal these days.
I will recommend running schema alters manually instead of recreating schemas.
We will start adding the changes to the release notes, so you know what to alter.
If you are interested in a specific update now, I can find the schema changes in the git log. -
RE: Chinese/Korean Letters not supporting in PDF
I see you use the default jsreport image as base. This image doesn't include extra fonts so you need to install them.
https://jsreport.net/learn/docker#fonts-in-default-image -
RE: Regarding License Key Duplication
Could you compress the whole app, upload it somewhere, and email me the link where I can download it?
jan.blaha@jsreport.net -
RE: C# WPF app using jsreport works on all windows X 64 versions but not in X86 versions
We currently provide only x64 compiled versions of jsreport.
I'm afraid your only option is to run standalone jsreport with x86 nodejs and communicate with it usingjsreport.Client
nuget package. -
RE: Custom Font rendered smaller than system font
I'm not an expert on fonts, but maybe the following trick will solve your problem
<style> body { zoom: 1.5; } </style>
Note that the font handling is processed fully by Chrome and jsreport does not influence it.