i have an object called 'item'. it has a property called 'type'
when i do this:
<s:property value="item.type" />
i get this: Q
ok, so i can read the value, but when i try this:
<s:property value="item.type == 'Q'" />
i get an empty string
this give me an empty string:
<s:property value="%{#item.type == 'Q'}" />
i even tried this:
<s:property value="item.type.equals('Q')" />
but i got this string: false
how do i get 'true'?