⟵ 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
  • Relative list and number changes via set

    Example with a change in the stock balance

    set, setList and setListExtended can set not a final value in the field, but change it relative to the existing one.

    For this, instead of =, + or - is used.

    For example, when adding an operation to the warehouse, we can change the stock of an item in the Warehouse table:


    =:
    set(table: 'warehouse'; field: 'count' + $#nfv)

    Example with adding values to a list

    Similarly, set, setList, and setListExtended can add or remove a value if their target field is a select.

    For this, instead of =, + or - is used.

    For example, let's add the bases 45, 56, and 17 to list:


    =:
    set(table: 'table'; field: 'list' + json`["45","56","17"]`)

    For this to work, the target field must have the multiple values parameter enabled!

    How do I know which values were added or deleted when I changed the list?

    For example, the list is changed manually, and you need to perform some action on the added values. There is a way to do this through listMinus with old and current values:


    =:
    linkToDataText(title: "Show added values"; text: $join) join: listJoin(list: $list; str: $#nl) list: listMinus(list: $#nfv; list: $#onfv)

    So, we subtract the old list from the new list in the field, and only the newly added values remain. We use join to display them in linkToDataText.

    If you need to get the values removed from the list, you need to swap $#nfv and $#onfv — then only the values that were there before the change and are no longer there will remain.

    How to automatically add a record to a field with the type Comment?

    In the field comments, you can add a separate message with code.

    Add an entry from the current user:


    example1:
    set(table: 'test'; field: 'comment' = "Test comment"; where: 'id' = 3)

    Historically, it turned out that in comments adding a message uses the = operator.