⟵ hearthere ⟶
  • Training course
  • Creating simple tables and fields
  • Codes base level
  • Selects and links between tables
  • Table settings basic level
  • Prefilters base level
  • Conditional formatting basic level
  • Highlighting the field in bold, text color and background color
  • Several formatting conditions
  • Locking and highlighting the whole row by conditions
  • Blocking changes in the field by conditions
  • What are text and comment in field formatting
  • Whole table formatting
  • Action codes base level
  • Using pop-up windows
  • Cycles base level
  • Roles and users on the web
  • Codes advanced level
  • Action codes advanced level
  • Prefilters advanced level
  • Field and table settings advanced level
  • Cycles advanced level
  • Formatting advanced level
  • Select-Tree
  • Executing a scheduled action code
  • Printing and emailing
  • Notifications
  • API interaction
  • Adaptivity and Sections
  • Highlighting the field in bold, text color and background color

    formatting

    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