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 224
  • 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