hey so I went through the blocks and they work fine, but I want a way to integrate this in our search feature too since search is the main aspect of our app
so how can I create city specific search?
such that
when I search library by book title, I get results within the city we have selected
It sounds like maybe you need to create a list of the cities, libraries and book titles. Then workout the logic to return the desired data based on the selected list item. We could do this with functions and passing the specific arguments… you’ll just have to duplicate the function on the different screens if necessary.
Let me ask this, what happens if someone searches for a partial string like “mockingbird”… should it find “To Kill a Mockingbird”? What I’ve done so far has only looked for the string using an = statement, not a partial match.
I added a new home screen to the mock up, and it is configure for the relative search. Right now the data is returned to a list for the results from the compiled lists.
I’m not sure how you want to to display the data, but based on the other screens, if a city is returned would they go to the screen w/ the libraries listed?
If they click on a library would they see the books?
If they click on a book would they see the book details, and all of the libraries in the cities they can find the book?
I just watched the video, and I think I understand what you’re trying to accomplish. I think I’m headed in the right direction with the mock up I started based on what you’re looking to do.
but when I go back to the search feature and search something in the same session, it does show right results but it shows then twice in the list like you can see below
It’s been fun. I’m new to Thunkable, and the best way to learn anything is to solve the issues other people are having, and I’ve leaned a lot through the process myself.