I have an application where users can create and sell their services.
To create a service, they’re required to complete a description form. In the end, they are asked to assign their service to a category and also add some subcategory hashtags. Since subcategories might be too broad, I also give them an option to describe those subcategories in more detail. See the picture below
In my database:
A category is an Option Set
A subcategory is an Option Set
The data type Service has the following fields:
Category - List of Categories (Taken from Option Set)
Subcategory - List of Subcategories (Taken from Option Set)
Full Subcategory - List of Texts
The way everything is working on the front end
When a user selects a category – > specific subcategories are presented → once subcategories are selected they become displayed below in the repeating group
That repeating group has input in every cell which again, shows the selected subcategories. Here the user can edit that input freely and once finished and the “Update” button is clicked the value of that input should be attached to “Service” (Full Subcategory).
Since autobinding doesn’t seem to be working in the repeating group’s cell (as I’m saving as a text type), maybe anyone has an idea how the saving part could be solved, so that at the time when the subcategory is taken out from the multidropdown menu above, the “full subcategory’s value” would be removed from the database too?