4 Answers, 1 is accepted
0
Hello Ali,
Such a behavior could be related to the settings applied to the fields. We are currently unaware of an issue in the control related to the inability to print interactive forms. Would it be possible to share an example document which we can use to test the case?
Regards,
Tanya
Progress Telerik
Such a behavior could be related to the settings applied to the fields. We are currently unaware of an issue in the control related to the inability to print interactive forms. Would it be possible to share an example document which we can use to test the case?
Regards,
Tanya
Progress Telerik
Try our brand new, jQuery-free Angular 2 components built from ground-up which deliver the business app essential building blocks - a grid component, data visualization (charts) and form elements.
0
Ali
Top achievements
Rank 1
answered on 09 Nov 2018, 04:30 PM
Thank you for your response.
I just tried to fill the form on the demo site https://demos.telerik.com/silverlight/#PdfViewer/InteractiveForms
And then printed using the toolbar button.
You can see the result on the attached image
0
Hi Ali,
The documents in the examples don't have the setting allowing you to print a widget enabled and that is why the values of the fields are lost when printing. You can change this setting through the IsPrintable property of the Widget assigned to the field. Here is a simple example of how to achieve that:
Hope this helps.
Regards,
Tanya
Progress Telerik
The documents in the examples don't have the setting allowing you to print a widget enabled and that is why the values of the fields are lost when printing. You can change this setting through the IsPrintable property of the Widget assigned to the field. Here is a simple example of how to achieve that:
foreach
(var field
in
this
.pdfDocument.AcroForm.FormFields)
{
foreach
(var widget
in
field.Widgets)
{
widget.IsPrintable =
true
;
}
}
Hope this helps.
Regards,
Tanya
Progress Telerik
Try our brand new, jQuery-free Angular 2 components built from ground-up which deliver the business app essential building blocks - a grid component, data visualization (charts) and form elements.
0
Ali
Top achievements
Rank 1
answered on 14 Nov 2018, 11:58 AM
Great!
Thank you very much!!!