⟵ 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
  • How do comparisons work in codes?
  • How do I check if one list contains another?
  • How to turn off where by the conditions
  • The insert line has no id
  • How to create lists fast
  • How do I take a row from a table and then get data from it?
  • What are associated array lists?
  • Specifying a field name by code, specifying a line of code by code?
  • A list of lists and turning it into a list
  • How do I sequentially go through the list and complete it or overwrite the values?
  • How do I filter and sort a list or a list of associated arrays?
  • Getting information about manual values, tree level, selects
  • How do while and var work? Replacing with listReplace
  • How to optimize the execution of the same code with variables passed to it?
  • How to use cond for condition?
  • How do I use the value of the previous row to calculate the current one?
  • Why do I need a column-by-column recalculation in the calculated and temporal tables?
  • How do I use the previous value in codes and combine manual input and code?
  • Row and rowList operations
  • 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
  • The insert line has no id

    An example of cases in which this may make different code results when inserting and then recalculating

    The addition row has not yet been recorded in the database — therefore, it does not have an #id. This is important because if you use code in the addition row that references #id, you may encounter unexpected behavior:

    If the field is calculated by code and edited in the addition row and "code only on addition" is disabled — the value in the added row will be fixed, as it will be recalculated after addition and will differ from the value calculated during addition.

    If the field is calculated by code and edited in the addition row and "code only on addition" is enabled — the value in the added row will be added considering that #id was equal to "":


    = :
    str`"NUM -" ++ #id`) // Without "code only on addition" // Result in the addition row: NUM - // Result after addition: NUM - [hand] // With "code only on addition" // Result in the addition row: NUM - // Result after addition: NUM -

    Therefore, it is not recommended to use id references for codes in tables where users can manually add rows.

    When you add a row using the insert function, this is also relevant — if you use "code only on addition," then during its execution, id will be empty!

    If you still need both the addition row and the id after addition, you need to add an action to the row addition:

    • If "code only on addition" is enabled:

      =: recalculate(table: $#ntn; where: 'id' = #id; field: $#nf)
      
      // Action code is executed after the creation of id
      
      
    • If "code only on addition" is disabled and the field is "editable on addition":


      =:
      clear(table: $#ntn; where: 'id' = #id; field: $#nf) // Action code is executed after the creation of id

      These options do not solve the problem if you have subsequent field codes dependent on this field.

    Therefore, the best option would be to construct the code without referencing the id of the added row!