struts タグの条件を確認し、次のようにフィールドを有効または無効にする必要があります。
<c:when test="${multipleCase=='true'}">
<html:text property="${row.dataElementJavaName}"
maxlength="${row.dataElementSize}"
size="60"
value="${row.dataElementValue}"
onkeyup="javascript:enableSave()"
onkeypress="return letternumber(event,'c')"
<c:if test="${model.readonlyStatus=='true'}">disabled</c:if>
/>
</c:when>
コンパイルすると、次のエラーが発生します。
Attribute: <c:if is not a valid attribute name
Encountered end tag </c:if> without corresponding start tag.
HTML入力フィールドで同じものを使用すると、正常に機能します。他のオプションは何ですか?入力はありますか?