Hide detail information in the form

Hello,
I would like to know if it is possible to hide information in a form when it should be seen in detail.
If so, how can I do it?

Thanks for your help

0 4 226
  • UX
4 REPLIES 4

For the columns that you want to hide in the form, write this in the show section:

NOT(CONTEXT(“viewtype”)=“Form”)

The column will be visible anywhere but in the form views.

Thank you

If a column wants to show only in detail view, then put a show_if condition on that particular column:
CONTEXT(“VIEWTYPE”) <> “Form”.

Also if you want a particular column must be shown in detail view then use a show_if condition
CONTEXT(“VIEW”) <> “your_form_detail”.

awesome thank you very much

Top Labels in this Space