I am using telerik editor(in asp.net), I am trying to write some content in that, some words or content are place on right hand side using tab key (i.e 4 time ).
At design time it display properly but when I print that document the right hand side words goes to the next line or some time it comes in middle of the page.
how I can solve this alignment problem??
1.before print(i.e design time in editor)
1.after print(i.e A4 page image after print)
thank you.
Asked
Active
Viewed 164 times
0

Ganesh
- 44
- 10
-
You may want to post relevant code for more help. Off the top of my head, it sounds like you may need a dedicated print CSS style sheet to solve this problem, since it only exists when you print. – Dmitriy Khaykin Feb 14 '14 at 04:58
-
Hi David, Thank you for response, please check updated question. – Ganesh Feb 14 '14 at 06:39
1 Answers
0
You have two options as I see it:
Define your own
Print.css
file and follow the instructions on this Telerik documentation page to ensure the printCSS
is used. This will ensure printing is consistent and any stripping of CSS done by the browser is avoided.Generate a
PDF
from the Telerik editor, and print thePDF
. See this Telerik documentation page with demo code for more details on how to generate a PDF from the Telerik ASP.net RadEditor control.

Dmitriy Khaykin
- 5,238
- 1
- 20
- 32