Hi,
I created a database for all members on my page and connected the Wix User ID to the _id field in the database. I also created a page where the user is able to change all his contact information such as adress, telephone number… . But when I connect the database to a dataset with the setting “Write and Read”, all the fields become disabled.
I first thought that the database permissions for the member were restricted, but as I looked they were perfectly fine. What am I doing wrong here?
Hey
I don’t see your code or data collection but if you connect the Wix User ID to the _id field that won’t be usable I guess. The _id field is each records unique row id so you will need to add a new field of type text and then store the Wix User ID in that field and set that.
OR…
The best way would be to just set the filter in the Dataset to only show records where _owner = Logged in user. If you do that they will only see and be able to update their own created records and you don’t need anything else.
Hope it helps.
Solved, thank you again Andreas!