Hi everyone,
3. Where I struggle:
I cannot grasp several concepts starting from here :
I tried to put a form encapsulating the whole page view, then I decided to treat the form at the listview level so that each category would be treated as a small form.
But in any cases, the formValidation component, fails to detect the radioComponent as an item "to be validated". It seems the "component" hides the fact that it contains a radio button. Do I need to do sort of an action at the component level to expose the value selected? Will it also permits the form (out of the component) to detect the radiobutton and validates it?
My goal would be to prevent the user from going to the next pageview while he has not selected an anwer for each question.
When the user has filled the answers for the 5 questions I would like to store a list with 2 item per index : question unique id (doc ref from firebase) and the radiobutton value.
So that, when the user will have answer the 35 questions (5x7) and sign up, I will store all the answer of the form in firebase using its userID.
Could you provide any insights to help me on that problematic?