represent Double as "" instead of 0.0 in .jsp page without javascript
I prepare filling the jsp page with:
SomeForm someForm = new SomeForm();
httpServletRequest.setAttribute("SomeForm", someForm);
SomeForm has the attribute attDoub type double
in .jsp page i have the text field:
<td><html:text property="attDoub" styleId="attDoub" size="14"/></td>
How can i get "" value in stead of 0.0 on loaded page?
Javascript is not allowed!
Regards
P.S.
I tried with value="" but it permanently changes the value of property