Hello,
I have added a custom field to the user table called "phone_number" and am looking to save it during save user function on the form. In the "Data override" section I have tried {data:phone_number} (my field name in the form is phone_number also) and it is not working. Does anyone know what I need to do?
I have added a custom field to the user table called "phone_number" and am looking to save it during save user function on the form. In the "Data override" section I have tried {data:phone_number} (my field name in the form is phone_number also) and it is not working. Does anyone know what I need to do?
Hi relliott,
In the data provider you need to provide the table field name and the intended value, so you need to use:
This is assuming both the table field and the form field are named "phone_number"
Best regards
In the data provider you need to provide the table field name and the intended value, so you need to use:
phone_number:{data:phone_number}
This is assuming both the table field and the form field are named "phone_number"
Best regards
This topic is locked and no more replies can be posted.