⟵ 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
  • Action codes base level
  • Using pop-up windows
  • Cycles base level
  • Roles and users on the web
  • Codes advanced level
  • Action codes advanced level
  • How can I get the previous value of a field and use it in the action code?
  • Strong action blocking by server conditions
  • At what moment is the data for the action codes taken?
  • Cross-execution of actions
  • Opening a nested temporary table and returning data to the parent table
  • Features of calling linkToInput and linkToButtons from popups
  • Relative list and number changes via set
  • Inserting rows after a certain row when sorting by order field
  • Using listReplace to execute actions
  • Using the panels of other tables
  • How to open the file upload window?
  • Using an arbitrary form in linkToInput
  • How to perform actions on the rows highlighted with checks?
  • 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
  • Cross-execution of actions

    Example of bags and kilograms

    For example, there are 2 interdependent fields. The value in the second field should always be twice the value of the first field and vice versa.

    We create the action code for changes in the first field:


    =:
    set(table: $#ntn; field: 'field_2' = math`$#nfv * 2`; where: 'id' = #id)

    We create the action code for changes in the second field:


    =:
    set(table: $#ntn; field: 'field_1' = math`$#nfv / 2`; where: 'id' = #id)

    What happens when the first field is changed — a new value will be set in the second field, triggering the change event there, and the action code will calculate the value for the first field and set it.

    If no change occurs in the first field — the entire chain of codes will stop.

    Be careful with such interdependent reciprocal action codes — if they do not reach equilibrium, the server will hang in an infinite loop until the timeout occurs.

    The peculiarity of this calculation for the addition row?

    In the addition row, there are no actions — therefore, this technique does not work in it. You can leave some key field editable, and calculate the others by code only during addition, blocking them specifically during addition.

    In this case, you can move the addition to a temporary table and disable the addition row.