-
Notifications
You must be signed in to change notification settings - Fork 641
Closed
Labels

Description
I have a form template page that I am inserting multiple times within a larger PDF. Each individual form page has different field values, but because each form template has the same field names they conflict with each other (i.e. only the first form values show, the rest are blank).
I'd like a way to overwrite a Widget.field_name parameter so that the first form page has field_name[0], second is field_name[1], etc.
One possible option is to access the PDF bytes data and regex for the different field names and edit them there, but it would be nice if the field_names field was able to edited through the Widget class.