Hello,
The situation is the following:
We are building a tablet app to display customer data.
When you first start the app, you see a search field where you can enter a name and search for customers. The "Search" Service we built, displays a list of the matching customers.
When you now click on a customer, the detail page for this specific customer is displayed.
Now, we want to do a search in the search bar again, but in fact, we cant. The click on the search button has no effect.
This may has the reason, that we are still on the "Detail Page" and the Search Service we built is located in the home page of the app and not on the detail page which is displayed currently (as you can see in the header).
How can we solve our problem?
One way to solve this problem would be to get all the customers on the load of the home page and then filter the displayed list with its built-in filter. But unfortunately our database has too many entries and this would slow down the performance enormously.
Thanks in advance, Kai