CheckBox Inject Field
Wednesday, January 30, 2019 at 11:15amHello,
I inject a CheckBox with 'X', while signing, getting this message 'Form is inComplete'.
Please provide help about this issue.
Thanks
OneSpan Introduces DigipassONE, Bringing a Unified Platform Approach to Authentication Modernization
A new authentication platform helps financial institutions support diverse customer authentication preferences while modernizing at their own pace Learn More
Reply to: CheckBox Inject Field
Wednesday, January 30, 2019 at 11:23amReply to: CheckBox Inject Field
Wednesday, January 30, 2019 at 11:26amReply to: CheckBox Inject Field
Wednesday, January 30, 2019 at 11:34amReply to: CheckBox Inject Field
Wednesday, January 30, 2019 at 11:34amReply to: CheckBox Inject Field
Wednesday, January 30, 2019 at 11:37amReply to: CheckBox Inject Field
Wednesday, January 30, 2019 at 11:53amReply to: CheckBox Inject Field
Wednesday, January 30, 2019 at 11:57amReply to: CheckBox Inject Field
Thursday, January 31, 2019 at 04:23amReply to: CheckBox Inject Field
Thursday, January 31, 2019 at 04:36amReply to: CheckBox Inject Field
Thursday, January 31, 2019 at 04:45amReply to: CheckBox Inject Field
Thursday, January 31, 2019 at 04:59amReply to: CheckBox Inject Field
Thursday, January 31, 2019 at 06:53amDocumentPackage mydocpackage = PackageBuilder.NewPackageNamed("Injected Field Test") .WithSigner(SignerBuilder.NewSignerWithEmail("[email protected]") .WithCustomId("signer1") .WithFirstName("Test") .WithLastName("Signer")) .WithDocument(DocumentBuilder.NewDocumentNamed("TestDoc") .FromFile("C:/filepath/sampleAgreement_InjectedFields.pdf") .WithSignature(SignatureBuilder.SignatureFor("[email protected]") .WithName("SignerSignature") .WithPositionExtracted()) .EnableExtraction() .WithInjectedField(FieldBuilder.CheckBox() .WithName("mycheckbox") .WithId("mycheckbox") .WithValue("X"))) .Build();Reply to: CheckBox Inject Field
Thursday, January 31, 2019 at 07:00amReply to: CheckBox Inject Field
Thursday, January 31, 2019 at 07:21amReply to: CheckBox Inject Field
Thursday, January 31, 2019 at 07:41amReply to: CheckBox Inject Field
Thursday, January 31, 2019 at 08:14amReply to: CheckBox Inject Field
Thursday, January 31, 2019 at 08:46amField myField = eslClient.GetPackage(mypackage).Documents[1].Signatures[0].Fields[0]; myField.Value = "X"; eslClient.ApprovalService.ModifyField(mypackage, "mydoc", mysignatureId, myField);This works to set the value after the field already exists. IF you are requiring the check box, it has to be selected to sign the document. If you don't want the checkbox value to be required to be checked, remove the "required" validation from the checkbox. If you set the check box to required and do not select it, you will get an error about a required checkbox. Let me know.