AW: AW: Clay Using Taglibs (e.g validation)

2007-02-12 Thread Bernhard Slominski
-Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Hermond, thanks for the answer. This looks not so difficult. I'm glad you said that it didn't look difficult. It sounds like you are also a believer that inheritance should be part of object

RE: Strange Behavior with inputTextarea component

2007-02-12 Thread Gary VanMatre
From: [EMAIL PROTECTED] Hi The magic is a missing attribute: allowBody form textarea jsfid=textAreaTest allowBody=false This is a mockup./textarea /form You can also use another Clay functionality Or, you can put this attribute in the XML config. component jsfid=textAreaTest

Re: tiles integration error

2007-02-12 Thread Greg Reddin
On 2/9/07, JS Portal support team [EMAIL PROTECTED] wrote: Also, I can't seem to download the latest Tiles from http://www.apache.org/dyn/closer.cgi/tiles/binaries/tiles-2.0.0-bin.zip Looks like you are trying to download a mirrored distribution and we don't have one yet. nor can I

RE: Strange Behavior with inputTextarea component

2007-02-12 Thread Richard Eggert
Thanks. That fixed the problem. What I actually ended up doing was this: component jsfid=myTextarea extends=inputTextarea id=myTextarea allowBody=false / component jsfid=textAreaTest extends=myTextarea id=textAreaTest attributes set name=value value=Test was successful.