テキストフィールドを無効にしようとしています:
<html:text property="firstName" style="width: 100px;">
<%=isDisabled%>
</html:text>
String isDisabled = "";
if (x == null || x.equals("")) {
isDisabled = "disabled='true'";
しかし、テキストフィールドは無効になっていません..何か考えはありますか??