I require a pdf with form fields - both checkboxes and a signature field. I have tried everything to get it to work but the checkboxes won't check when I click on them.
I've attached a simple MRT to demonstrate and the resulting PDF.
Here are the details:
- Each checkbox is marked as "Editable"
I am using c# code in the background
To get the signature field to work correctly, I am using a fix you gave me some time ago:Also, on exporting the pdf, I am using the following setting:Code: Select all
public void SetSignatureField(object sender, Stimulsoft.Report.Events.StiValueEventArgs e) { e.Value = "pdfunsignedsignaturefield"; }
Code: Select all
settings.AllowEditable = StiPdfAllowEditable.Yes;
Many thanks.