Forum Discussion
MarkShnier__You
Qrew Legend
4 years agoYou would need to have a separate abbreviated field to use on reports. if you want to get fancier there is syntax to have a 'more' link appear to allow drilling into the record to see the full record. There is also syntax possible to allow hover text to see the full note
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------
- MeaganMcOlin4 years agoQrew CadetHi Mark,
What I need is to shorten the comment display on the table view. So that it doesn't make the record/row it is on so long. I want the record height to be uniform and the comments section is preventing that right now.
------------------------------
Meagan McOlin
------------------------------ - MichaelTamoush4 years agoQrew CaptainMark, what is the hover syntax? Or is that something complicated enough we need to take it offline and consult?
------------------------------
Mike Tamoush
------------------------------- MeaganMcOlin4 years agoQrew CadetHover syntax is deeper knowledge than I have. :) But I would love to learn.
------------------------------
Meagan McOlin
------------------------------- MarkShnier__You4 years ago
Qrew Legend
Try this. The left 20 character should be a Clickable Hyperlink to view the record with "hover text" to see the whole text field.
var text Words = Left([Appt. Comments],20);
var text URL = URLRoot() & "db/" & dbid() & "?a=dr&rid=" & [Record ID#];
var text Hyperlink = "<a href=" & $URL & ">" & $Words & "</a>";
// then define the hover text
// Note!!, the hover text must be enclosed in a single ' character as the first space will stop the text.
// no html allowed in the hover text
// Use \n for line feed
var text HoverWords =
"'"
& [Appt. Comments]
& "'";
// this below will always be the same
"<div>" & "<span title=" & $HoverWords & ">" & $Hyperlink & "</b></span>" & "<div>"
------------------------------
Mark Shnier (YQC)
Quick Base Solution Provider
Your Quick Base Coach
http://QuickBaseCoach.com
mark.shnier@gmail.com
------------------------------