RE: Checkbox problem again

2005-02-24 Thread Scott Piker
> disabled="<%myBean.isEnable%>"/> > > no errors thrown but It does nothing, it doesn't even outputs the disabled on html tag. > "does nothing" means what? Nothing rendered, or does it render an tag without the disabled flag? I think you want to use !myBean.isEnable(). - Scott ---

Checkbox problem again

2005-02-24 Thread Vinicius Caldeira Carvalho
I'm trying to set an checkbox to be disabled. But it's not working anyway <%String enable = String.valueOf(myBean.isEnable)%> Well, that throws an Exception setDisable(boolean). Ok so I tried no errors thrown but It does nothing, it doesn't even outputs the disabled on html tag. Another despe