Hi there,
I was able to successful write and run a script for a basic "like" button on a table where team members can sort of upvote a table item. The problem is it does not refresh on the interface for a long time and does not give any haptic feedback to the user - not a good experience at all and very easy to find yourself hitting the button multiple times.
Is there a way to get the value to load more quickly on the page? Like a field refresh trigger or interface refresh action?
//Read
var record = input.config().getLikes;
//console.log(record);
//math
var newLikes = Number(1 + record);
//console.log(newLikes);
//update
output.set('likes', newLikes);