This content has been marked as final.
Show 1 reply
-
1. Re: Conditioanal Width in Extended Data-table
christian.beikov Feb 22, 2017 2:26 AM (in response to jmandal2k17)Well it should be
style="height:99.5%;width:#{shipments.freight ? '3465px' : '3000px'};"
EL expressions are surrounded by #{} and you can imagine the content of such an expression to be similar to a java expression. Thus you have to put the texts 3465px and 3000px under single quotes, similar to what you would do in Java with double quotes.