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")