Hello everyone,
some time has passed since I last wrote here, which means I went on with development without encountering blocking issues, at least until now

Unfortunately I just stumbled upon a new issue, so I need your help one more time.
Our PDF forms have some repeating fields, aka several identical fields with the same name. This means that you can input, say, a date field on the first page, and the value for this field will be replicated to all the other companion fields. Of course the library does not do that for me, but I have code in place that handles this nicely.
The issue is that, if more than one field has the same name, GetEditTextFormat() calls on any of them them return an empty string. If, instead, the field names are different, GetEditTextFormat() works as expected.
I expect that you have some safeguard in place that makes GetEditTextFormat() return an empty string if multiple fields have the same name, since in this scenario you would not know which value to return. However, in this particular usage scenario it is correct to assume that all fields with the same name share the same format (or at least they should), hence GetEditTextFormat() can safely return the format of any of them.
Could you please perform this change?
Thank you in advance,
Michele