The root of my issues with the repeating fields is the values not translating to XML correctly from my Nintex O365 Form. For some reason it's not capturing the tag name in the multi-line (plain text) field. This is what I am getting:
<?xml version="1.0" encoding="utf-8"?><RepeaterData><Version>1.0</Version><Items><Item><_XHHR2gBRLmb type="System.String">sadcsd</_XHHR2gBRLmb></Item><Item><_XHHR2gBRLmb type="System.String">sdcsdcsdc</_XHHR2gBRLmb></Item><Item><_XHHR2gBRLmb type="System.String">sdcdscscsc</_XHHR2gBRLmb></Item></Items></RepeaterData>
When it should be:
<?xml version="1.0" encoding="utf-8"?><RepeaterData><Version>1.0</Version><Items><Item><Account type="System.String">sadcsd</Account ></Item><Item><Account type="System.String">sdcsdcsdc</Account ></Item><Item><Account type="System.String">sdcdscscsc</Account ></Item></Items></RepeaterData>
Account being the name of the column. Do you have any suggestions? For some reason the column name isn't coming over.