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
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โ
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
User | Count |
---|---|
15 | |
9 | |
9 | |
7 | |
3 |