Sorry if this is a dumb question, but why does a single char string check not work? Am I missing something?
this works:
public String getSelect() {
return "az";
}
<s:if test="select == 'az'">
</s:if>
this does not:
public String getSelect() {
return "a";
}
<s:if test="select == 'a'">
</s:if>
Cheers Greg
