In the app I am creating I have a “Category” collection, “Books” collection, “Dog book” collection and “Cat book” collection.
Category 1-* Books
Book 1-* Cat Books (Can’t make it 1-1)
Book 1-* Dog Books (Can’t make it 1-1)
I first list all the categories, a user picks a category, then he/she picks a book (from the listed books) from the category (book about cats for example), this would open the page I have created which includes cat info. If user instead picked the book about dogs, I want it to open the page with dog info.
How do I accomplish this in Adalo?
Would rebuilding the database help somehow?
Adding the “Sometimes” checking if current book equals to Dogs should take me to “Dog book” right?
Right now, nothing happens when clicking the dog book, the condition is not true.
I also wonder, why would this only work if there are a few options? Is it because of performance issues if I have many animal books with plenty of actions?