Detail display

Hello,
Could you help me by telling me how not to display a column in detail if the form for this column is empty?

thank you so much

0 8 175
  • UX
8 REPLIES 8

@Romain_GICQUEL

You shouldnโ€™t see the column in detail view if there is not an entry for that column. If your column type is number then probably you should check the initial value, If its set to โ€œ0โ€ or there is something, just clean it.
if you donโ€™t want to see it in a form view then you should change show constrains off, or you can write โ€œFALSEโ€.

Thanks Atlas,
Concretely, I would like even the title of the column not to appear.
You see?
For exemple in this pics: โ€œSignature Interlocuteurโ€
3X_d_7_d7a207bdbb003a6384735b7954af6d2857572f82.png

Thank you

You could do this, by typing โ€œFALSEโ€ expression to show constraint.

it does not work because I no longer see the column in the form

@Romain_GICQUEL
From UX > Options set to APPLY SHOW_IF CONSTRAINTS UNIVERSALLY first. Than, you can use a SHOW_IF expression like:

SWITCH(
    CONTEXT("ViewType"), //Check the view type
    "form",TRUE, //case is Form, then TRUE
    "detail", ISNOTBLANK([Signature Interlocuteur]), //case is detail
    FALSE //default option
)

Obviously it does not work because I no longer see the column in the form

Thank You Levent

Youโ€™re welcome

Top Labels in this Space