⟵ 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
  • Additionally

    Is it possible to create a notification with activation in the future?

    Yes, in this case, explicitly pass a value for active_dt_from in the insert.

    How to see the latest notifications?

    The bell button next to the nickname at the top right of the Totum window.

    Is it possible to use html in a notification?

    Yes, notifications support html if in the notification code you specifically call linkToDataHtml.

    If you use linkToDataText — then no.

    Is it possible to make a link to the table inside the cycle, for example, to allow the user to go directly to the order?

    Yes. Construct it through str. This path needs to be passed as a link in the html notification:

    ```totum

    =: linkToDataHTML(title: $#title; html: $replace)

    url: str`"https://" + $#nh + "/TREE_NUMBER/CYCLE_TABLE_ID/" + $#cycle_id + "/TABLE_ID"`
    

    replace: textByTemplate(text: $html; data: json["url":$url])

    ```html:html

    ... ... {url} ...

    ```

    What is the interval of checking the notifications?

    Depends on the setting in System tables —> Main —> Settings and cron —> Settings —> periodicity.

    How can the code disable unnecessary user notification?

    You need to either delete the row with the notification from notification or, if you want it to remain in the list of notifications, set active to false.