Forum Discussion
XavierFan
9 years agoQrew Cadet
You'll have to supply the thumbs up icon - at a URL that is accessible by the users in your QuickBase app.
Then:
Create a new Formula URL field - called [Like Button]
with the following formula:
var Text LikeURL = ToText([Me Too]);
var Text ImageURL = "https://images.quickbase.com/si/16/200-add.png";
"<a href='" & $LikeURL & "'>" &
"<img src='" & $ImageURL & "'>" &
"</a>"
This takes the URL from [Me Too], and puts in a HTML link around your image.
You'll need to swap out the ImageURL value with your own image URL.
Then:
Create a new Formula URL field - called [Like Button]
with the following formula:
var Text LikeURL = ToText([Me Too]);
var Text ImageURL = "https://images.quickbase.com/si/16/200-add.png";
"<a href='" & $LikeURL & "'>" &
"<img src='" & $ImageURL & "'>" &
"</a>"
This takes the URL from [Me Too], and puts in a HTML link around your image.
You'll need to swap out the ImageURL value with your own image URL.