Which function should be called in the formatting code?
The code-formatting has several independent blocks — currently, we are studying the f-block
(formatting).
The f-block
in the code formatting field expects the invocation of the following functions:
Can I use other code functions in the format code?
Yes, for example in the conditions:
f1=: setFormat(condition: $calc > 10; background: "tomato"; color: "white")
calc: listCount(list: $list)
list: selectList(table: $#ntn; field: 'id')
// Backgrounds in the field will turn red in all rows, and values will turn white if the number of rows in the table exceeds 10
At what time is formatting calculated?
After all other codes and before delivering the table to the user in the browser.
What setFormat parameters set bold, text color, and background color?
Make the values in the field bold:
f1=: setFormat(bold: true)
Besides bold, the two most popular parameters are:
background
— background color.
color
— text color. We recommend setting white
for dark backgrounds like tomato
.
Both of these parameters accept colors in hex, such as #FF6347
or in color names like tomato
.
Recommended colors for backgrounds:
OldLace
PapayaWhip
Tomato
GreenYellow
Lavender
Orange
RoyalBlue
SteelBlue
Magenta
MistyRose
Beige
FloralWhite
WhiteSmoke
GhostWhite
AliceBlue