⟵ 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
  • How does access to change and prefilter visibility effect filtering?
  • Code-calculated prefilters
  • How to use the prefilter field as a temporary variable?
  • 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 use the prefilter field as a temporary variable?

    An example using a hidden prefilter field to show a table comment

    We can use prefilter fields as data storage.

    When opening the table via linkToData, we pass the value of the hidden prefilter field into the filter. And prefilter fields are accessible via #.

    Let's display the table comment based on the prefilter field:


    =:
    setTableFormat(tabletext: #fl_hidden_field)

    An example of blocking the adding of rows using the prefilter field

    For example, we have a table with cycles, and we want these cycles to be linked 1 to 1 with another table of cycles. These are orders and the invoices linked to them.

    So, we need to, when transitioning from the order cycle, record its cycle number and keep this number when creating an invoice.

    Also, we need to block the creation of invoices if the order number is empty.

    Action code in the order:


    =:
    linkToTable(table: 'bills'; filter: 'fl_order_num' = $#nci; target: "self")

    When creating a cycle in Invoices, we take the #fl_order_num field in the row part and then take it inside the bill cycle because the table inside the cycle in bills will not have access to fl_order_num.

    In the table formatting code for Invoices, we block the addition if fl_order_num is equal to "":


    f1=:
    setTableFormat(condition: #fl_order_num = ""; blockadd: true)