TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
dip s
NA
256
81.2k
How to Print/ Show crystal report in crystal viewer from Angular 6
Sep 17 2020 5:54 AM
Hello,
We have a cloud based application with angular 6(client) and asp.net (back end).
Currently, we are printing various accounting reports using crystal report. Actually, what we are doing like we take the output of crystal report and converting it to base64 string and we are returing this string to front end that is angular. Then we are printing this output string into a new tab in chrome. Code is as follows.
const
pdfWindow
=
window
.open("");
pdfWindow.document.write("
<
html
<
head
>
<
title
>
Discharge Summary
</
title
>
<
style
>
body{margin: 0px;}iframe{border-width: 0px;}
</
style
>
</
head
>
");
pdfWindow.document.write("
<
body
>
<
embed
width
=
'100%'
height
=
'100%'
src
='data:application/pdf;base64, " +
encodeURI(data) + "#
toolbar
=
0
&
navpanes
=
0
&
scrollbar
=
0
'
>
</
embed
>
</
body
>
</
html
>
");
Now what we want to do like, We have a component called accounts. On this account component; we have multiple tabs(
ngb-tab
). In one of the tab I have to show crystal report (bill summary). Is is possible to show report in crystal viewer in tab? On is there any other way to show report?
Thank you in advance.
Reply
Answers (
0
)
How To Use Two Layouts in Angular App
Save Shopping Cart to Check Out Page