Unable to place formFields in the given positions
I am trying to add signature block as formfield at custom location in a PDF.
"formFields":[
{
"receipientIndex":"1",
"name":"test",
"inputType":"SIGNATURE",
"locations":[
{
"pageNumber":"1",
"top":"200",
"left":"100",
"width":"100",
"height":"20"
}
],
"conditions": [
{
"value": "Portland",
"whenFieldName": "Textfield4"
}
],
"fontSize":12,
"contentType":"SIGNATURE_BLOCK",
"showOrHide":"SHOW"
}
],
But irrespective of the location specified here, the signature block is rendered at a fixed place (somewhere in the middle). Also, how can we use the condition field properly?
