Profile data from user resource create/update
Hi guys, I have an issue. I have User resource with some fields like name, lastname, address, email and etc. And form structure if separated in tabs, like General information (mandatory fields) and then other tabs, like shipping addess, description and etc, that are optional. Some of data must go to profile table. Issue is that if all profile fields are not wrapped up in a single fieldset or etc, then only first fieldset data is passed to profile relationship and other is not. How do you handle user and profile creation?
2 Replies
I guess your only option is to overwrite the
save()
method on the page classes and implement your own logic.Well I was hoping there is some magic way 😄