Re: Html-el disabled property error

2004-09-25 Thread Zoran Avtarovski
OK, I had a good look at the source and it should be working. Can somebody please explain to me why this isn't doing what it's supposed to do? I hate the fact that I have to use the html tags when I've been able to use EL for everything else. Zoran > Zoran Avtarovski wrote: > Maybe I am mis

Re: Html-el disabled property error

2004-09-25 Thread Zoran Avtarovski
Thanks Bill, But that is exactly what was causing the error in the first place. All the other variations have been an attempt to get it to work. What I wanted to know is anybody else having problems with this. To provide more contextual info, the disabled property works fine with the standard htm

Re: Html-el disabled property error

2004-09-24 Thread Bill Siggelkow
Zoran Avtarovski wrote: Maybe I am missing something but is there some reason that you can't use: <%@ taglib uri="/WEB-INF/struts-html-el.tld" prefix="html" %> -Bill Siggelkow Hi all, I'm building my first webapp using srtuts-el and I've come across a strange error. When creating a form using the

Re: Html-el disabled property error

2004-09-24 Thread Zoran Avtarovski
Thanks David, I came to the same conclusion but no joy. $[true} gives the same error as does trying 1 or ${1}. I've got a feeling it may be an error in the html-el library or that somebody with more experience in the el world may have some words of wisdom. Z. > Zoran, > > The error says it want

RE: Html-el disabled property error

2004-09-24 Thread David G. Friedman
Zoran, The error says it wants a boolean but claims you gave it a string. I tested your syntax in my Tomcat 5.0.28 and it comes out as a String. I think you want to use ${true} for the boolean "true" instead of {true} which seems to return the String "true". If I'm wrong, hey, what's what I get