Re: ajax question

2007-07-28 Thread Andrea Chiumenti
For what I can remember table elements substitution (innerHTML ='...') have problem under M$IE either if you threat 'em with dom. The tbody element is needed tho handle all table 'real' content and to separate that content from the header and footer that i threat for different scopes. On 7/28/07,

Re: [t5] presentation

2007-07-28 Thread Robin Helgelin
On 7/27/07, ra [EMAIL PROTECTED] wrote: No, I'd like make a presentation for my team, so I'd like to create rather a powerpoint slides Maybe this then? Straight from the OSCON press :) http://howardlewisship.com/downloads/Tapestry-5-Preview.pdf -- regards, Robin

Re: T4 XHR under JDK 1.4.2

2007-07-28 Thread Bill Holloway
Got it. Also, it looks like DirectLink is fine under 1.4 JDK. Bill On 7/27/07, Ben Dotte [EMAIL PROTECTED] wrote: Hi Bill, We implemented a fair bit of ajax using the XTile component before EventListener came about and it proved very usable (we still use it heavily on one component):

Re: T4 XHR under JDK 1.4.2

2007-07-28 Thread Renat Zubairov
Hi You can still use asynch=true for majority of the components and you can construct Tapestry XHR request manualy in javascript without any server support, it will also work. Renat On 28/07/07, Bill Holloway [EMAIL PROTECTED] wrote: I've been forced into a project wanting to use

[T4.1.2] add an include-script element throw a SAX exception

2007-07-28 Thread #Cyrille37#
Hello I don't understand why I get the SAXParseException : The content of element type script must match (include-script*,input-symbol*,(let|set)*,body?,initialization?). The exception arrived when **I add a include-script element**. The script is : ?xml version=1.0 encoding=UTF-8? !DOCTYPE

Re: [T4.1.2] add an include-script element throw a SAX exception

2007-07-28 Thread #Cyrille37#
#Cyrille37# a écrit : Hello I don't understand why I get the SAXParseException : The content of element type script must match (include-script*,input-symbol*,(let|set)*,body?,initialization?). The exception arrived when **I add a include-script element**. The script is : ?xml version=1.0

Re: [T5] Security of files in the classpath

2007-07-28 Thread Robert Zeigler
Couple of comments... First, the T5 asset service has the md5 feature. But the default implementation, at the moment, only requires md5 hashing for the .class files. (So, there's not an open door to the class bytes at the moment. ;) Second, I have a T5 app that should be going live in the

[T4.1.2] Multi Fields validation: How to handle decoration ?

2007-07-28 Thread #Cyrille37#
Hello, For days I looking how to handle multi-fields validation on a form submit on the server-side. The validation needs to know all form's field state. So I can plug my rules in the submit listener but know I could not find how to decorate fields that are not matching rules. Can you give

include-script and 3rd-party javascript libraries

2007-07-28 Thread Chinchih
I have a question about how the include-script tag in script templates is used to include 3rd-party javascript libraries? According to Tapestry 4.x online User Guide, the required resource-path attribute specifies The path to the script within the classpath. I tagged onto the ConfirmDelete

Re: [T4] Gerenating Response -- Component

2007-07-28 Thread Igor Drobiazko
Hi, we tried this approach in our project as well and didn't succeed. Then we found the approach proposed by Marcus Matern. After modifying the sources it worked very well. You can see the sources here:

Re: [T4.1.2] Multi Fields validation: How to handle decoration ?

2007-07-28 Thread Shing Hing Man
Have you look at chapter 3 of Kent Tong's book Enjoying Web Development with Tapestry on Tap4 ? In case you did not know, the first 4 chapters are free. http://www.agileskills2.org/EWDT/ You need to use ValidationDelegate to record the component that is in error. It is a bit tricky if you have

Re: [T4.1.2] Multi Fields validation: How to handle decoration ?

2007-07-28 Thread #Cyrille37#
Shing Hing Man a écrit : Have you look at chapter 3 of Kent Tong's book Enjoying Web Development with Tapestry on Tap4 ? In case you did not know, the first 4 chapters are free. http://www.agileskills2.org/EWDT/ mmmh... I read it, but not well. I think I can got the solution after re-read