I have a struts input text field, and I want the disabled attribute to change based on a dynamic value.
This is not working:
<html:text property="startDate" maxlength="14" disabled='<c:out value="${bbsInfoModel.waitMode}"/>' />
When I just use the c:out… on the page, the value is displayed:
Test Value: <c:out value="${bbsInfoModel.waitMode}"/>
You cannot embed a custom tag in another custom tag. Try this:-