⟵ 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 to create lists fast

    Which key starts the lists?

    Lists start at 0.

    How to get the first item of a list?

    If we want to take the first element of the list — $list[0].

    In [], the element number for lists or the key for row is specified — $row[key].

    If you have a rowlist and you need to take the value from the first row from the title column — $rowlist[0][title].

    If the column names in row or rowlist are not in English, they should be enclosed in quotes — $rowlist[0]["Представление"].

    How to create a list of multiple single values?

    1. Using the listCreate function:

    =:
    listCreate(item: 1; item: 2; item: 3)
    1. Using the quick sugar json:

    =:
    if(condition: #field_1 = json`[1,2,3]`; condition: #field_2 = json`["banana","apple"]`; then: true; else: false)
    • [] — denote a list.

    • , — element separator.

    • "" — strings must be enclosed in quotes.

    If you make a mistake in the format, for example, put ; instead of ,, there will be an error when calculating the code:

    Parsing error in [1:3]. Expected ',' or ']' while parsing array.
    
    From which we understand that a `,` or closing `]` is expected in the list, but we have something else there.
    

    The good thing about json is that it can be used directly within the function, but it is difficult to read if there are many values.

    Please, if you have more than 3-4 values in this small list, use listCreate.

    Which function's work is replaced by json`` sugar?

    Function listCreate.

    Can I use json`` inside other functions?

    Yes.