Forum Discussion
AdamKeever1
6 years agoQrew Commander
Try using a formula rich text field and placing your buttons in an HTML table. I did this with icons and formula text fields to create a rich visual for ergonomics:
I started out by making smaller combination fields; example [L Wrist_combo]:
Then combined the smaller combos; example [Visualization_combo]:
You can do this with buttons that are formula rich text buttons; I was not able to get this to work with formula URL buttons.
Example:
------------------------------
Adam Keever
------------------------------
I started out by making smaller combination fields; example [L Wrist_combo]:
"<div align=\"center\" >"
&
List("<br>",
"L Wrist",
"Risk = " & ToText([L Wrist Total]),
[L Wrist Risk Icon],
[L Wrist Risk Rating])
Then combined the smaller combos; example [Visualization_combo]:
"<table style=width:100%> <tr> <td style=width:100% colspan=7 align=center> "&[Overall_combo]&" </td> </tr> <tr style=width:100% align=center> <td "&[L Wrist_combo]&" </td> <td "&[L Elbow_combo]&" </td> <td "&[L Shoulder_combo]&" </td> <td "&[Neck_combo]&" </td> <td "&[R Shoulder_combo]&" </td> <td "&[R Elbow_combo]&" </td> <td "&[R Wrist_combo]&" </td> </tr> <tr> <td style=width:100% colspan=7 align=center><img src = https://XXXX.quickbase.com/up/XXXX/g/rb/eg/va/5%20Joints.jpg height=200;></td> </tr> <tr> <td style=width:100% colspan=7 align=center> "&[Back_combo]&"</td> </tr> </table>"
You can do this with buttons that are formula rich text buttons; I was not able to get this to work with formula URL buttons.
Example:
"<table style=width:100%> <tr> <td style=width:100% colspan=3 align=center> "&[save]&" </td> </tr> <tr style=width:100% align=center> <td "&[change]&" </td> <td "&[change2]&" </td> </tr> </table>"
------------------------------
Adam Keever
------------------------------