⟵ 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
  • Row and rowList operations

    Which function is used to stack two rowLists by rows?

    If you need to add the rows of one rowList to the rows of another rowList, they are added just like list using listAdd:


    =:
    listAdd(list: $row1; list: $row2) row1: selectRowList(table: 'table_1'; field: 'field_1'; field: 'field_2') row2: selectRowList(table: 'table_2'; field: 'field_1'; field: 'field_2')

    This is often required in select codes:


    =:
    listAdd(list: $row1; list: $row2) row1: selectRowListForSelect(table: 'table_1'; field: 'title'; bfield: 'uiid') row2: selectRowListForSelect(table: 'table_2'; field: 'title'; bfield: 'uiid')

    What function is used to add the columns of two rowLists?

    rowListAdd — is used when you need to add a column with values to an existing rowList.

    The column with values is passed as a list with the desired order of elements.

    They will be added to the rowList in this order, so set the sorting accordingly. If there are no sorts, the result will differ from time to time:

    =: rowListAdd(rowlist: $rowList; field: "field_3" = $list)
    
    rowList: selectRowList(table: 'table_1'; field: 'field_1'; field: 'field_2'; order: 'field_1' asc)
    
    list: selectList(table: 'table_2'; field: 'field_3'; order: 'field_1' asc)
    
    

    If you need to add more than one column:

    =: rowListAdd(rowlist: $rowList_1; rowlist: $rowList_2)
    
    rowList_1: selectRowList(table: 'table_1'; field: 'field_1'; field: 'field_2'; order: 'field_1' asc)
    
    rowList_2: selectRowList(table: 'table_2'; field: 'field_3'; field: 'field_4'; order: 'field_1' asc)
    
    

    How do I get a list of values from row?

    If you have a row and need a list of values contained in it, rowValues does this:

    For example, let's take the field values in a list from 5 fields in the current row:


    =:
    rowValues(row: $row) row: selectRow(table: $#ntn; field: 'field_1'; field: 'field_2'; field: 'field_3'; field: 'field_4'; field: 'field_5'; where: 'id' = #id)

    How do I get a list of keys from row?

    There is a similar function rowKeys, which takes the key names from row.

    It is usually used together with listFilter, which can filter row (i.e., leave only those columns that meet the condition):

    Get the names of all fields where the value is greater than 10:


    =:
    rowKeys(row: $filter) filter: listFilter(list: $row; key: "value" > 10) row: selectRow(table: $#ntn; field: 'field_1'; field: 'field_2'; field: 'field_3'; field: 'field_4'; field: 'field_5'; field: 'field_6'; field: 'field_7'; field: 'field_8'; field: 'field_9'; field: 'field_10'; field: 'field_11'; field: 'field_12'; where: 'id' = #id)

    Let's complicate this task: for example, these are months and we need to get the numbers of the months where the value is greater than 10.


    =:
    listReplace(list: $keys; action: $new_value; value: "value") new_value: strReplace(str: $#value; from: "field_"; to: "") // To get the numbers, we replace field_ with an empty string in each element of the list keys: rowKeys(row: $filter) // Here we get a list of string field names filter: listFilter(list: $row; key: "value" > 10) row: selectRow(table: $#ntn; field: 'field_1'; field: 'field_2'; field: 'field_3'; field: 'field_4'; field: 'field_5'; field: 'field_6'; field: 'field_7'; field: 'field_8'; field: 'field_9'; field: 'field_10'; field: 'field_11'; field: 'field_12'; where: 'id' = #id)

    How do I remove a column from row and rowList?

    This task is performed by rowKeysRemove. You pass it a row or rowList and the names of the columns to be removed.

    If you pass a rowList, you will need to specify recursive: true!

    How do I rename a column key in row or rowList?

    The task of renaming columns is solved using rowKeysReplace.

    If you pass rowList instead of row, you will need to specify recursive: true!