I’m rethinking my current setup since I got feedback that the updating of the data on screen is slow.
Right now I have a resource getItems (retool db) as the source of a collection view. When the item button is clicked, it runs code and queries. I then trigger getItems again to update the collection. But it’s not snappy. It would be snappier if I just set the item “done” value to true and display text in that collection card that it has been “done/checked”.
I tried to do this by doing something like getItems.data.done[24]=true;
Or self.selectedItem.done=true;. But the collection card doesn’t change. The value under “queries and transformers” doesn’t get changed also. I have to trigger getItems and load everything before it shows the value “done”.
What’s the correct way to do this?