⟵ 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
  • Cycles tables and tables within a cycle
  • Automatic connection of tables within a cycle
  • How do I access tables inside cycle with codes?
  • Link type fields
  • Recalculating the cycles table when changing within a cycle
  • How to configure cycle accesses for users
  • 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
  • Link type fields

    cycles

    What kind of structure optimizes the use of a Link?

    Field type Label is recommended to be used only in the cycle table to quickly fetch data from fields within the cycle.

    It is highly recommended to avoid using labels anywhere else.

    If you do not use a label, the code looks like this:


    =:
    select(table: 'table_in_cycle'; field: 'field_in_cycle')

    Why should we be careful with Link fields?

    It is very easy to loop the scheme.

    Why is it better not to use a Llink for Select fields with "individual calculation for each row"?

    In this case, the select will be calculated for each row, which will result in a heavy load on the server.

    Does the change in the Link cause the change in the main field?

    No.

    For this, an appropriate type (not a label) is taken and a binding of code and action code is made. The code is as described above, and the action code is as follows:


    a1=:
    set(table: 'table_in_cycle'; field: 'field' = $#nfv) a2=: clear(table: $#ntn; field: $#nf; where: 'id' = #id)

    The logic is that when a change occurs, set is triggered, but the field goes into manual value mode, so clear is used to detach it.