Hi, amazing community. I’m very new to adalo (and no coding), so please forgive my basic questions. (COLLECTIONS are in capital letters)
The context (simplified): I want to create an app to “dissolve” psychological TRAITS. This is done guiding an USER throught some iterations of 4 questions, for which we have RESPONSES, with the collection having one property “number of question”. As the user might stop in the middle of a process, then we also have SESSIONS. Relationships : U - TTT / T - SSS / S - RRR
My question is about the display and the iterations
I’d like to make the screen as free of distractions as possible. Can I have the questions appearing one by one, the last replacing the previous at the top in the “question area” and then “transcribed” in a smaller font just underneath so the user can still have the history of a session?
It would look like this :
__________________________
|_________ Home _______ |
| *Question area * |
|-----------------------------------------|
| Q11 response |
| Q21 response |
| Q31response if=0 then stop |
| Q41 response |
| Q12 response |
| Q22 response |
| Q32 response if=0 then stop |
| Q42 response |
| Q13 response |
next question max records = 1, sort = index low-high, filter: index = logged in user > next question.
answered filter: answered_by_user = logged in user, sort = index high-low
When a user answers a question you add the record in answers and update logged in user > next question with the index of the question they have answered.
Hi there! I’ve been watching as many videos on adalo as possible, so I’m starting to understand, but not everything. Here are my questions, if you mind answering those, that would be great;
Q1) Collection Questions: how can I structure that if Question 0, 1, 3 and 4 are text and Q2 an integer that has to compared to 0 ?
Q2) Am I understanding correctly if I imagine such a collection made of 5 records with 2 properties : question and index … or
Q3) Is index really a property of Answers?
Q4) Could you kindly tell me again (being very specific) whar are the properties of the 3 collections? (I guesses answered_by_user is a filtered answer??)