문제

I would like to add a color or style attribute specifically to the below line but I keep running into TLD issues

<html:text property="xxxx" readonly="true" color="#C0C0C0"/>

Stacktrace:

org.apache.jasper.JasperException: /jsp/FinanceFee.jsp(617,22) Attribute color invalid for tag text according to TLD
도움이 되었습니까?

해결책

Use css style overrides

<html:text property="xxxx" readonly="true" style="color:#C0C0C0;"/>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top