Example of hiding fields in panels and mobile interface
Hiding in the panel with the ability to show based on a condition:
f1=: setFormat(hide: "panel" = true)
f2=: setFormat(condition: #type = 1; hide: "panel" = false)
Hiding in the panel without the ability to show and excluding from column distribution:
f1=: setFormat(hide: "extpanel" = true)
Hiding in the mobile interface:
f1=: setFormat(hide: "mobile" = true)
f2=: setFormat(condition: #type = 1; hide: "mobile" = false)
Example of hiding the columns of the rows part by conditions
Hiding a field in web follows a slightly different path — it is done through table formatting and the fieldhide
parameter of the setTableFormat
function:
f1=: setTableFormat(fieldhide: 'field' = true)
f2=: setTableFormat(condition: #h_type = 1; fieldhide: 'field' = false)
Is this hiding strong or weak?
This hiding is weak — the user can open the field settings and show them.