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
After hooking a checkbox field render (to conform to a bootstrap v4.3x checkbox component), I was wondering why it was working for the Register form but not the Profile form.
I then noticed the difference between them in their respective build*Form methods:
$inputfield->attr('name', 'profile_' . $inputfield->attr('name'));
vs $inputfield->attr('id+name', 'register_' . $inputfield->attr('name'));
Kindly add the id+ in the Profile buildProfileForm. I'm sure it was just an unintended omission.
Thanks much.
The text was updated successfully, but these errors were encountered:
After hooking a checkbox field render (to conform to a bootstrap v4.3x checkbox component), I was wondering why it was working for the Register form but not the Profile form.
I then noticed the difference between them in their respective build*Form methods:
$inputfield->attr('name', 'profile_' . $inputfield->attr('name'));
vs
$inputfield->attr('id+name', 'register_' . $inputfield->attr('name'));
Kindly add the id+ in the Profile buildProfileForm. I'm sure it was just an unintended omission.
Thanks much.
The text was updated successfully, but these errors were encountered: