Reputation: 5
I am having a few issues with Radio Buttons when using the Docusign REST API V2.
I am using two radio groups, one is required and one is supposed to be optional. I will add the xml definitions at the end of this post. The buttons are appearing on the document, with the pre-selected values; however I am having two issues from here.
XML Tab definitions:
<?xml version="1.0" encoding="UTF-8"?>
<radioGroupTabs>
<radioGroup>
<groupName>RadioGroup1</groupName>
<optional>false</optional>
<radios>
<radio>
<anchorString>{RAD1}</anchorString>
<anchorXOffset>0.0</anchorXOffset>
<anchorYOffset>0.0</anchorYOffset>
<anchorIgnoreIfNotPresent>true</anchorIgnoreIfNotPresent>
<selected>true</selected>
<anchorUnits>inches</anchorUnits>
</radio>
<radio>
<anchorString>{RAD2}</anchorString>
<anchorXOffset>0.0</anchorXOffset>
<anchorYOffset>0.0</anchorYOffset>
<anchorIgnoreIfNotPresent>true</anchorIgnoreIfNotPresent>
<selected>false</selected>
<anchorUnits>inches</anchorUnits>
</radio>
</radios>
</radioGroup>
<radioGroup>
<groupName>RadioGroup2</groupName>
<optional>true</optional>
<radios>
<radio>
<anchorString>{RADA}</anchorString>
<anchorXOffset>0.0</anchorXOffset>
<anchorYOffset>0.0</anchorYOffset>
<anchorIgnoreIfNotPresent>true</anchorIgnoreIfNotPresent>
<anchorUnits>inches</anchorUnits>
</radio>
<radio>
<anchorString>{RADB}</anchorString>
<anchorXOffset>0.0</anchorXOffset>
<anchorYOffset>0.0</anchorYOffset>
<anchorIgnoreIfNotPresent>true</anchorIgnoreIfNotPresent>
<anchorUnits>inches</anchorUnits>
</radio>
</radios>
</radioGroup>
</radioGroupTabs>
Image of selected radio values
Image of document after selection
Upvotes: 0
Views: 1102
Reputation: 2702
Upvotes: 1