You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: