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
.