⟵ 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
  • Using the panels of other tables

    How do I open a panel of another table?

    For this, the function linkToPanel is used.

    How do I open a panel by passing data into fields?

    Use the parameter field: 'field_name' = $value.

    How to hide some fields in the panel?

    This can be set in the formatting section of these fields.

    setFormat is used with the hide parameter:


    f1=:
    setFormat(hide: "panel" = true)

    There are 2 options for hiding in panels:

    • panel — in this case, the field participates in the distribution of fields between the right and left columns and can be shown by passing the condition hide: "panel" = false

    • extpanel — in this case, the field is hidden without the possibility of being shown by conditions and is excluded from the calculation of field distribution between columns!

    In addition to these two, there are other hide parameters not related to panels:

    • "mobile" = true — hides the field in the mobile interface.

    • "form" = true — hides the field in forms.

    • "table" = true — unchecks the visibility in the eye.

    What two types of hiding are possible for fields in the opening linkToPanel?

    There are 2 options for hiding in panels:

    • panel — in this case, the field participates in the distribution of fields between the right and left columns and can be shown by passing the condition hide: "panel" = false

    • extpanel — in this case, the field is hidden without the possibility of being shown by conditions and is excluded from the calculation of field distribution between columns!

    How to open a panel from a panel?

    Exactly the same as from the table. Remember that if you need the table or the panel from which you are opening the nested panel to be refreshed, you need to specify refresh: true.