Is nesting of EL Expressions in Ternary Operator allowed?
What is wrong with the following expression?
<input class="text_field" type="text" name="receivedBy" id="receivedBy" style="width:250px;" maxlength="64" value="${empty obj.val ? obj1.attr1.val ' ' obj2.attr1.val: obj3.val"}/>
You are actually not nesting EL expressions (nesting would look like
${foo${bar}baz}which is actually not possible). You are attempting to concat EL outcomes as a String. You cannot concat Strings in EL that way. Your best bet is to usec:setto preset it.