Hi,

I don't know if this bug has been corrected cause I don't understand the
version naming mechanism of Tapestry.

The release Tapestry-2.2-beta-2.tar.gz (which I am using) has a bug. The
ValidField component in that package (ValidField.java) does not call the
delegate's writeSuffix method.

This is what it does

        if (rendering)
            delegate.writePrefix(writer, cycle);

        super.renderComponent(writer, cycle);

This is what the other versions do.... (Tapestry-2.2-alpha-4,
Tapestry-2.2-beta-1, Tapestry-2.2-rc-1)

        if (rendering)
            delegate.writePrefix(writer, cycle);

        super.renderComponent(writer, cycle);

        if (rendering)
            delegate.writeSuffix(writer, cycle);

Regards,
Manoj



-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Tapestry-developer mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/tapestry-developer

Reply via email to