Forum Discussion
MarkShnier__You
Qrew Legend
5 years agoClick Minded will produce an image file like png format. You would store that image as a file attachment in an EOTI app called Images.
The image can be displayed like this in that app.
<img src=" & URLRoot() & "up/" & Dbid() & "/a/r" &
[Record ID#] & "/e7/v0 width=150>"
where 7 is the field ID of the image. If you expose that code, in the EOTI app, you have a string which will make the image.
Then in you real app where you need the button you make a formula Rich Text button as a hyper link.
var Image = .. the string from the EOTI app
var text URL = .. your URL field or formula
<a href=" & $URL & ">" & $Image & "</a>"
<
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------
The image can be displayed like this in that app.
<img src=" & URLRoot() & "up/" & Dbid() & "/a/r" &
[Record ID#] & "/e7/v0 width=150>"
where 7 is the field ID of the image. If you expose that code, in the EOTI app, you have a string which will make the image.
Then in you real app where you need the button you make a formula Rich Text button as a hyper link.
var Image = .. the string from the EOTI app
var text URL = .. your URL field or formula
<a href=" & $URL & ">" & $Image & "</a>"
<
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------
MichaelTamoush
5 years agoQrew Captain
Thanks! Those both sound like they will work in my use case.
Mark, do I need to use an EOTI app or can I just create an internal table with images, in the same app?
------------------------------
Mike Tamoush
------------------------------
Mark, do I need to use an EOTI app or can I just create an internal table with images, in the same app?
------------------------------
Mike Tamoush
------------------------------