Help

Like Button w/ Slow Value Refresh on Interface

Topic Labels: Automations Formulas
324 0
cancel
Showing results for 
Search instead for 
Did you mean: 
RaeRae
4 - Data Explorer
4 - Data Explorer

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);

 

 

 

 

 

 

0 Replies 0