During the development and with the code, there were some major issues with our own Formulars which we tried to connect and send data.
Until I noticed on RecordCommands.cs | Line 216 " recordFields[f.FieldName] = f;"
It created only entries in the array with only the type of field instead of the Name of the field. Which makes it harder to distuingish the mulitple custom text fields.
I suggest to fix this issue only to change line 216 to recordFields[f.FieldLabel], which solved my issue on working with it.
During the development and with the code, there were some major issues with our own Formulars which we tried to connect and send data. Until I noticed on RecordCommands.cs | Line 216 " recordFields[f.FieldName] = f;"
It created only entries in the array with only the type of field instead of the Name of the field. Which makes it harder to distuingish the mulitple custom text fields.
I suggest to fix this issue only to change line 216 to recordFields[f.FieldLabel], which solved my issue on working with it.