Hi there,
We have an account signup page that uses the extranet module. Until recently, the IDs and names of controls were more or less static. So, for the Email field, this code:
@GetString("UserManagement:User.Email.InputName")
would give me UserManagement_Form_Email
However, since an upgrade (I think to 9.2.6) I now get the paragraph ID included in the name:
UserManagement_Form65_Email
This breaks our existing JavaScripts as they previously assumed a fixed control name. It requires significant rewriting of things as we now have to use data- attributes or specific classes to address our fields in external JavaScript (where we can't get the dynamic values using GetString.
Is this a bug or a feature? Any ideas on how to solve this?
Imar