⟵ 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
  • How do I filter and sort a list or a list of associated arrays?

    How to sort the list?

    For example, to ensure a sequential order of values in a list composed of two lists:


    =:
    listSort(list: $list; type: "string"; direction: "asc") list: listAdd(list: $list_1; list: $list_2) list_1: selectList(table: 'table_1'; field: 'unical_number'; where: 'status' != "") list_2: selectList(table: 'table_2'; field: 'unical_number'; where: 'status' != "") // Note that in type you need to specify the type of values, and in direction the sorting direction.

    Such a case is possible but redundant:


    =:
    listSort(list: $list; type: "number"; direction: "asc") list: selectList(table: 'table'; field: 'unical_number'; where: 'status' != "") // Here the database works first, and then the web server

    Better this way:


    =:
    selectList(table: 'table'; field: 'unical_number'; where: 'status' != ""; order: 'unical_number' asc) // Here only the database works

    How to sort the rowlist?

    In this case, there are two additional parameters. In key we specify that we are using item, and in item — which one exactly.


    =:
    listSort(list: $rowlist; type: "number"; direction: "asc"; key: "item"; item: "price") rowlist: selectRowList(table: 'table'; field: 'num'; field: 'price'; where: 'status' = 4)

    But in fact, you can specify the name of the item directly in the key parameter:


    =:
    listSort(list: $rowlist; type: "number"; direction: "asc"; key: "price") rowlist: selectRowList(table: 'table'; field: 'num'; field: 'price'; where: 'status' = 4)

    How do I filter the list?

    Very similar to the sorting function listFilter.


    =:
    listFilter(list: $list; key: "value" > 1000) list: selectList(table: 'table'; field: 'price')

    In key for list, you can choose to filter by values — value or by keys — key.

    How do I filter the rowlist?

    Specify the column to filter by in key:


    =:
    listFilter(list: $rowlist; key: "price" > 1000) rowlist: selectRowList(table: 'table'; field: 'num'; field: 'price'; where: 'status' = 4)

    Is it possible to filter the list by several conditions?

    This is done sequentially:


    =:
    listFilter(list: $filter_1; key: "type" = 2) filter_1: listFilter(list: $rowlist; key: "price" > 1000) rowlist: selectRowList(table: 'table'; field: 'type'; field: 'price'; where: 'status' = 4)

    Or using the multiple key parameter (this option is faster):


    =:
    listFilter(list: $rowlist; key: "price" > 1000; key: "type" = 2) rowlist: selectRowList(table: 'table'; field: 'type'; field: 'price'; where: 'status' = 4)

    Are the keys of the list saved when it is sorted?

    No. It results in a new list where the keys start from 0.

    Are the list keys preserved when it is filtered?

    No. It results in a new list where the keys start from 0.

    When is it important to use skip: true when working with rowList?

    If you have a heterogeneous rowlist and a certain row lacks the key by which filtering is performed, the function will return an error.

    skip: true indicates that the error should not be returned — the row should be excluded from the range and the process should continue.

    Is it possible to sort or filter the row?

    Yes. In this case, the keys are preserved. In the case of sort, they are arranged in the desired order, and in the case of filter, only those that meet the conditions remain.

    If you just want to remove some keys from row and you know them, use rowKeysRemove.