⟵ hearthere ⟶
  • Training course
  • Creating simple tables and fields
  • Codes base level
  • Calculating a value by code
  • Calculation order and calculation order error, how to show the field in a place other than the calculation order
  • Recalculation unit of tables, recalculation of rows and their order
  • Header in simple and calculated tables
  • Using the functions
  • Using the if and select functions as an example
  • How the where and order parameters work, by the example of select
  • The difference between a single value and a list, operations on lists (sum, min, max, count)
  • Using math for mathematical operations
  • Using str to combine text
  • Fixing a calculation when executing codes
  • Manual values
  • Execute code only when adding
  • The $#nd, $#ndt and $#ntn quick variables
  • Dates processing
  • Calculation errors and their details
  • Selects and links between tables
  • Table settings basic level
  • Prefilters base level
  • Conditional formatting basic level
  • 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
  • Using the if and select functions as an example

    table_recalc

    How can I select a field value from another table with select()?


    =:
    select(table: 'table_name'; field: 'field_name'; where: 'field_name_id' = #id)

    What does highlighting a parameter in yellow mean?

    Yellow parameters are name-parameters — they expect the name of a table or the name of a field.

    table — expects the name of a table.

    field — expects the name of a field.

    name in such fields can be specified directly, in which case it is enclosed in single quotes. Move the cursor between the quotes and you will be offered autocomplete. For field autocomplete to work, the table parameter must be filled in.

    In creation functions like rowCreate, for example, a name-parameter is encountered, which is correctly filled in with double quotes. It will work either way, but it is good practice to adhere to the standard.

    The name parameter can be set by code, for example here depending on the value of the status field:


    =:
    select(table: $if_table; field: 'header_field') if_table: if(condition: #status = 1; then: 'table_1'; else: 'table_2') // table_1 and table_2 can be specified in double quotes as well, but it is good practice to use single quotes since they will be substituted into the table parameter later

    What does bold mean?

    Bold parameters are mandatory parameters. Without them, the function will not work and will return an error. Those that are not bold can be absent — they are optional.

    What does underlining a parameter mean?

    Underscoring a parameter means that it can be used multiple times. For example, in if where condition is a multiple parameter:


    = :
    if(condition: #status = 1; condition: #payment > 0; then: true; else: false)

    condition in if is applied sequentially from left to right — this is how all multiple parameters work.

    What characters are offered to auto-fill table and field names?

    name parameters are filled in using single quotes!