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.4k
How to print base64 string data having table in crystal report
Dec 2 2020 4:12 AM
I am printing base64 string in crystal report. When my base64 string contains normal plain data it is getting printed but if my
base64 string has data in tabular format
then data from the table is getting displayed plainly not in tabular format.
Only text is getting printed not table
. So how to print data with table or in tabular format? My code is as follows
const
win = window.open(
""
,
"_blank"
);
let html =
""
;
html +=
"<html>"
;
html +=
'<body style="margin:0!important">'
;
html +=
'<embed width="100%" height="100%" src="data:application/pdf;base64,'
+ result +
'" type="application/pdf" />'
;
html +=
"</body>"
;
html +=
"</html>"
;
win.document.write(html);
In above code,
result contains data to be displayed
.(data contains table). Thank you in advance.
Reply
Answers (
1
)
How can i use multiple data sets in ssrs proc
What is a good Data reporting tool in angular 8 to show reports.