I might be blind as a mole, but I cannot find form fields in the componentns. Only full forms, and these come with a button.
My goal is to:
Show a custom list (filter)
Add a (preferably small) form field to each list time
So that I can update multiple values without leaving that view
Preferably without button
Thanks in advance.
Also, I’m new to the whole NoSQL database and Adalo.
Love the speed of Adalo to put something together, but i’m breaking my brain on the NoSQL. I’m having a datbase structure that goes severval levels deep. In true NoSQL this can be put into a single collection, but here we cannot access that. It only goes 1 level deep. So it seems the worst of both worlds a bit.
The fields commonly used in forms are Text Input & Dropdown Menu. You can find these & others in Forms & Fields. You can create a Custom Form with these & other fields. A button at the end of the form will update the database with form values.
You should be able to create a simple filter with just dropdowns on the same screen as the list you are filtering. Just a note of caution, if you move 2 screens away & come back to the “Filter/List screen”, all values in the dropdown will reset and you will get the unfiltered list. At least this is what happened to me.
A work around is to store filter values in the User collection & filter with these values.
About the second part, I cannot help you as I am strictly a no-coder. I am sure other more experienced members will chime in.
Hi, wow, crazy how I missed that. I’ve been searching for form and field, and htat came back without a hit. Sorry, and thanks!
Now i need to figure out how to store the values in each list item on for example “back” or any other action. The form field alone doesn’t allow an action on focus (or un-focus) as far as I could find so quickly.
My structre is
Games
Add players (on Game level, each game has a number of players/users)
Rounds (In a game, I can add rounds during the game)
Scores (For every round, the players get a score)
Then i need to sum all the scrores per player in a game
I’d love to have only 1 level deep: Game details where I list the rounds (as a list), and players+score under each round (as a list in the rounds-list)
Two things are tricky:
When I add a round, should I create X number of records in “scores” so that these collections are populated
Is there a way to add the score wihtout leaving the screen or is a popup/modal inevitable
In the last step it gets complicated
When I add a new round, I don’t seem to find the right way to list all players of that game in a round, and allow the user to add a score of reach of the player in that round.