cancel
Showing results for 
Search instead for 
Did you mean: 

Advanced mode config : display mode : How to test empty field in EL #{}

milonette_
Star Collaborator
Star Collaborator

Hello,

I want to write about a newbie discover I did about test on "empty" value for advanced mode config tests as:

http://doc.nuxeo.com/display/Studio/Control+the+display+mode+of+a+widget

So the question was :

How to not show a document field in a custom layout if it's empty ?

Because I got I boring test such as :

#{layoutValue.dc.nature==null || layoutValue.dc.nature==''?'hidden':'view'}
5 REPLIES 5

milonette_
Star Collaborator
Star Collaborator

The solution is in advanced mode configuration write, as example :

#{empty layoutValue.dc.nature?'hidden':'view'}

with key word "empty"

cf. http://mvel.codehaus.org/Value+Tests

Hi, note that this is not MVEL, this is EL

Ok thank you very much Anahide !

I will change the subject from "MVEL" ou "EL" to correct it in few minutes !

I had this very good documentation that explain other function possible to use in this context as jstl tag lib