⟵ 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
  • Inserting rows after a certain row when sorting by order field

    Why do I need the Show at the order location on adding parameter?

    When the sort by order field parameter is enabled for the table, users have the ability to manually change the order of rows.

    This also allows for immediately displaying rows in the sorted position upon their addition.

    Another bonus is the ability to insert rows via code after a specific row.

    How do I use n and after to paste in the right place?

    To insert new rows after a specific existing row in the table, you need to obtain the id of that row.

    Then, in insert or insertList, use the after parameter where you pass the id after which the insertion should occur:


    =:
    insert(table: 'table'; field: 'data' = #data; after: $select) select: select(table: 'table'; field: 'id'; where: 'summ' >= 100; order: 'summ' asc)

    Let's add rows after the smallest value of summ >= 100.

    What kind of difficulties can be found in the regular insertion between existing rows?

    The fact is that when inserting between two existing values with n enabled, it gets fragmented. Despite n having a very high bit depth, this resource is limited!

    What technical action needs to be designed in such cases?

    If you have a table where rows are constantly being inserted — you need to set up a cron job to execute normalizeN.

    During normalization, n does not trigger the recalculation unit. That is, rows are not recalculated. If fields in rows reference #n, they will not be recalculated!