I'm still quite new to AppMaker and struggling a bit getting my head wrapped around the Binding of datasources and manipulating the results.
I would like to know if there's a way to display only filtered results from a datasource in each Tab. I'll explain better. I have an EmailTemplate Data model with Subject, Body and Type fields. In the UI I added a Tabs container and would like to display in each tab only the EmailTemplates that match the selected Tab (item.Type === selectedTab).
I managed to do this with a Server side query filter with parameter linked to the onChangeTab event and that works fine BUT, it is server side so each time a new tab is selected it has to go back to the data and filter it and return the data which is taking a few seconds and makes the app look slow.
I was wondering if there's a way to only display data in each tab filtered by the condition above. So, keep the entire list of results but only display the ones that match the tab. I noticed there's an option to filter the items returned from the datasource but it doesn't seem to be changing the displayed data.
Any ideas?
Thanks!