ok sir
reshmajacob93
@reshmajacob93
Posts made by reshmajacob93
-
RE: How to hide jsreport studio information from url
Hi sir,
I have tested to invoke report from server side but response will contain studio url
ie,
Async rendering in progress. Use Location response header to check the current status. Check it <a href='http://localhost:5488/reports/624eadda935011c1881550db/status'>here</a>So i tried to add authentication in jsreport configuration file and add Authorization in header to use jsreport API's .
My doubt is ,
How to add Authorization in header to render report in new tab?
Actually we are rendering our report asynchronously and while call jsreport-browser-client it will give reponse like this,Async rendering in progress. Use Location response header to check the current status. Check it <a href='http://localhost:5488/reports/624eadda935011c1881550db/status'>here</a>
And after that using afterrender hook we call window.open method and render report in new tab I'm using window.open to render report in new tab.And in that method it is not possible to add header
window.open(reportUrl, "_blank"); -
RE: How to hide jsreport studio information from url
Hi i have tried to render report from server side (node js ) ie,
const client = require('@jsreport/nodejs-client')('http://localhost:5488');
client.render(requestObj).then(async (response) => {
let result= await (await response.body()).toString();
}).catch((err) => {
console.log('error.....', err);
});Response from server side:-
]{
"success": true,
"dataObject": "Async rendering in progress. Use Location response header to check the current status. Check it <a href='http://localhost:5488/reports/624eadda935011c1881550db/status'>here</a>"
}but here also i can access studio information from http://localhost:5488
Which Package should i have to use to invoke report from server side(node js)?
could you please show me one example? -
Where are the rendered reports templates are stored?
Hi sir,
I'm using mongodb for storing report templates and while rendering report using jsreport-browser-client we get a url like this,
eg: --
http://localhost:5488/reports/624dd34c8cf5c8a359261b62/contentand this report can be access at any using the above url, so my doubt is ,
- Where this rendered reports are stored?
- Is rendered reports are stored in mongodb?
- Why the rendered reports can be access from the url at any time?How long the rendered reports can be access?
- If it is stored in mongodb then is db size of mongodb will increase right?
- Is rendered reports templates are removed , while delete templates of report from studio?
Can you please tell me how db size managed ,if rendered reports are stored in mongodb (we are using documentdb from aws)?
-
How to hide jsreport studio information from url
Hi sir,
I'm using jsreport 3.3.0 Trial version but while rendering report using jsreport-browser-client we get a url like http://localhost:5488/reports/624dd34c8cf5c8a359261b62/content and studio can be access using url http://localhost:5488 .So my doubt how to hide studio information from report url because user can easily access studio informations like templates details from report url (http://localhost:5488/reports/624dd34c8cf5c8a359261b62/content) ,so they can able to delete already created templates of other report.
So how to secure studio information from users?
And our application is multi-tenant application so all tenants reports are stored in same studio .Can you please tell me how to solve these issue?
-
RE: font-weight and background color not working in native header and footer template
Sir i have shared demo in your email
-
font-weight and background color not working in native header and footer template
Hi sir,
I'm using using jsreport native header and footer for my report template.But font-weight,background color is not working in it.I have used inline style to apply background color and font-weight for footer because css class not working int.
Can you please tell me why it is not working in native header and footer?Also why css class is not working native header and footer?
-
How to show image in excel file
Hi sir,
I have a report in that i want to show image in excel file.I havent got any solution.Could you please share any example?