⟵ 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
  • 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
  • General
  • Additionally
  • Notification in the form of a temporary table
  • API interaction
  • Adaptivity and Sections
  • Notification in the form of a temporary table

    An example of how to create a notification in the form of a temporary table

    A notification can be opened not only as text or html, but also as a temporary table by passing parameters to it.

    For example, this way you can display information from a client's card with actions that can be performed directly from the notification window.

    Example from the documentation:

    =: linkToDataTable(table: 'tmp_table'; title: "Notification Title"; height: 400; params: $row; data: $data)
    
    row: rowCreate(field: "h_test" = $#val)
    
    data: rowListCreate(field: "goods" = "LIST_GOODS"; field: 'count' = "LIST_COUNT")