⟵ 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
  • Opening a nested temporary table and returning data to the parent table

    An example with a nested temporary table

    This is a cool task that can be solved using the hide: true parameter of the linkToDataTable function. If this parameter is not present, linkToDataTable opens a window, but if hide: true is present, the window does not open, and the function returns the hash of the created temporary table.

    So it works like this:

    1. A temporary table is called, which should be filled via insertmore about auto-filling.

    2. h_insert calls another temporary table with the hide: true parameter.

      Even though linkToDataTable is an action function, it can be executed from code.

    3. The nested temporary table performs the necessary calculation.

    4. h_insert, having received the hash of the nested temporary table, retrieves data from it.

    All this is packed into the h_insert code approximately like this:

    =: selectList(table: 'tmp_table_2'; hash: $linkto; field: 'id')
    
    linkto: linkToDataTable(table: 'tmp_table_2'; params: $row; hide: true)
    
    row: rowCreate()
    

    An example of how to open a nested temporary by a button and return the data to the first one by an action

    You can call a temporary table and pass the hash of the temporary table, which is obtained through the variable $#nth that is executed only in the temporary table.

    By using this variable in functions like set in the hash parameter, you can pass the value specifically to the version of the temporary table from which the second one was opened.

    The implementation order is as follows:

    1. Use a button in the first temporary table to open the second temporary table.

      =: linkToDataTable(table: 'tmp_table_2'; title: "Complex data"; params: $row; refresh: true)
          row: rowCreate(field: "hash" = $#nth)
      
      
      
    2. Enter data into it.

    3. Use a button to configure the return of data from the second temporary table to the first.

      =: set(table: 'tmp_table_1'; hash: #hash; field: 'data' = #data)
      
      

    An example for an adding row

    In the addition row, there are no triggers, so the action code can only be executed from the Button.

    By default, the buttons in the addition row are locked, but they can be unlocked with the parameter Enable button in addition row.

    You can call a temporary table and pass the addition row hash to it, which is obtained through a variable $#ih that is executed only in the code.

    Using this variable in functions like set in the hash parameter allows you to pass the value specifically to the addition row opened by the user.

    The implementation order is as follows:

    1. Use the button in the addition row to open the temporary table.

      =: linkToDataTable(table: 'tmp_table'; title: "Complex data"; params: $row; refresh: true)
          row: rowCreate(field: "insert_hash" = $#ih)
      
      
      
    2. Enter complex data into it.

    3. Use the button to configure the return of data from the temporary table to the addition row.

      =: set(table: 'table'; hash: #insert_hash; field: 'data' = #data)