Forum Discussion
SuscoImplementa
8 years agoQrew Trainee
This is very easy to do with
1) 2 variables at the app level for style
2) a Formula-Text field with HTML enabled used at the top of the form.
"<span style="& [SpanEmpty] &">" &
"<a>OPP: </a>"
&"</span>"
&"<span style="& [BtnDivStyle] &">" &
"<a href='" &
URLRoot() & "db/" & [_DBID_OPPORTUNITIES]
& "?a=dr"
& "&rid=" & [Opp ID]
& "&dfid=" & "11"
& "&z=" & Rurl() //Take user back
& "'style="& [BtnTextStyle] & ">Main</a>"
&"</span>"
&"<span style="& [BtnDivStyle] &">" &
"<a href='" &
URLRoot() & "db/" & [_DBID_OPPORTUNITIES]
& "?a=dr"
& "&rid=" & [Opp ID]
& "&dfid=" & "22"
& "&z=" & Rurl() //Take user back
& "'style="& [BtnTextStyle] & ">Scope</a>"
&"</span>"
&"<span style="& [BtnDivStyle] &">" &
"<a href='" &
URLRoot() & "db/" & [_DBID_OPPORTUNITIES]
& "?a=dr"
& "&rid=" & [Opp ID]
& "&dfid=" & "13"
& "&z=" & Rurl() //Take user back
& "'style="& [BtnTextStyle] & ">Estimate</a>"
&"</span>"
&"<span style="& [BtnDivStyle] &">" &
"<a href='" &
URLRoot() & "db/" & [_DBID_OPPORTUNITIES]
& "?a=dr"
& "&rid=" & [Opp ID]
& "&dfid=" & "24"
& "&z=" & Rurl() //Take user back
& "'style="& [BtnTextStyle] & ">Proposal</a>"
&"</span>"
&"<span style="& [BtnDivStyle] &">" &
"<a href='" &
URLRoot() & "db/" & [_DBID_OPPORTUNITIES]
& "?a=er"
& "&rid=" & [Opp ID]
& "&dfid=" & "12"
& "&z=" & Rurl() //Take user back
& "'style="& [BtnTextStyle] & ">Edit Proposal</a>"
&"</span>
1) 2 variables at the app level for style
2) a Formula-Text field with HTML enabled used at the top of the form.
"<span style="& [SpanEmpty] &">" &
"<a>OPP: </a>"
&"</span>"
&"<span style="& [BtnDivStyle] &">" &
"<a href='" &
URLRoot() & "db/" & [_DBID_OPPORTUNITIES]
& "?a=dr"
& "&rid=" & [Opp ID]
& "&dfid=" & "11"
& "&z=" & Rurl() //Take user back
& "'style="& [BtnTextStyle] & ">Main</a>"
&"</span>"
&"<span style="& [BtnDivStyle] &">" &
"<a href='" &
URLRoot() & "db/" & [_DBID_OPPORTUNITIES]
& "?a=dr"
& "&rid=" & [Opp ID]
& "&dfid=" & "22"
& "&z=" & Rurl() //Take user back
& "'style="& [BtnTextStyle] & ">Scope</a>"
&"</span>"
&"<span style="& [BtnDivStyle] &">" &
"<a href='" &
URLRoot() & "db/" & [_DBID_OPPORTUNITIES]
& "?a=dr"
& "&rid=" & [Opp ID]
& "&dfid=" & "13"
& "&z=" & Rurl() //Take user back
& "'style="& [BtnTextStyle] & ">Estimate</a>"
&"</span>"
&"<span style="& [BtnDivStyle] &">" &
"<a href='" &
URLRoot() & "db/" & [_DBID_OPPORTUNITIES]
& "?a=dr"
& "&rid=" & [Opp ID]
& "&dfid=" & "24"
& "&z=" & Rurl() //Take user back
& "'style="& [BtnTextStyle] & ">Proposal</a>"
&"</span>"
&"<span style="& [BtnDivStyle] &">" &
"<a href='" &
URLRoot() & "db/" & [_DBID_OPPORTUNITIES]
& "?a=er"
& "&rid=" & [Opp ID]
& "&dfid=" & "12"
& "&z=" & Rurl() //Take user back
& "'style="& [BtnTextStyle] & ">Edit Proposal</a>"
&"</span>
SuscoImplementa
8 years agoQrew Trainee
@lin:
BtnDivStyle
' padding:2px;
margin:2px;
border-style:solid;
border-width:3px 3px 3px 3px;
width:auto;
height:auto;
background:#2dab40;
color:#2dab40;
text-align:center;
text-decoration:none;
font-weight:700;'
BtnTextStyle
'text-decoration: none;color: white; font-weight: bold;'
BtnDivStyle
' padding:2px;
margin:2px;
border-style:solid;
border-width:3px 3px 3px 3px;
width:auto;
height:auto;
background:#2dab40;
color:#2dab40;
text-align:center;
text-decoration:none;
font-weight:700;'
BtnTextStyle
'text-decoration: none;color: white; font-weight: bold;'