[T3] Components in a loop

2006-01-31 Thread Sergiy Kyrylkov
Hi, I have a list of items. For each item I have to select a property from the set of the predefined values. If I just needed to display the items and the set of values I could have had something like this: Now since I need to both set initially selecte

RE: OutOfMemoryError

2006-01-25 Thread Sergiy Kyrylkov
Here is more http://wiki.jboss.org/wiki/Wiki.jsp?page=OutOfMemoryExceptions Jason, what makes you think it is a JVM issue? Sergiy > -Original Message- > From: Jason Dyer [mailto:[EMAIL PROTECTED] > Sent: Wednesday, January 25, 2006 5:44 PM > To: Tapestry users > Subject: Re: OutOfMemory

RE: OutOfMemoryError

2006-01-25 Thread Sergiy Kyrylkov
You have to allocate more space for permanent object space using java -XX:MaxPermSize=128m or whatever you want instead of 128 MB. Sergiy == Multiplex Systems LLC http://www.mpxsys.com == > -Original Message- > From: Cliff Zhao [mailto:[EMAIL PR

RE: DatePicker in component.

2006-01-25 Thread Sergiy Kyrylkov
import org.apache.tapestry.AbstractComponent; import java.util.Date; import java.text.Format; import java.text.SimpleDateFormat; public abstract class BoxInventory extends AbstractComponent { private Format _dateFormat; public Format getDateFormat() { i

RE: contrib:Table

2006-01-15 Thread Sergiy Kyrylkov
Yura, You can also check out this link: https://tapestrywebcomponentexamples.dev.java.net/ Sergiy = Multiplex Systems LLC http://www.mpxsys.com -Original Message- From: Gregg Bolinger [mailto:[EMAIL PROTECTED] Sent: Sunday, January 15, 2006 6:49 PM To: Tapestry us

RE: Best Practice (Hibernate, Spring, Tapestry)

2006-01-10 Thread Sergiy Kyrylkov
The best references here are Open Session in View pattern http://hibernate.org/43.html and, if you use Hibernate 3.1, generic DAO pattern http://hibernate.org/328.html and the latest Caveat Emptor (alpha 5) http://caveatemptor.hibernate.org/ constantly updated for Hibernate in Action 2nd edition co

RE: Navigation rules

2006-01-08 Thread Sergiy Kyrylkov
No you don't have to change Java files. They refer to page names in your .application file. You just have to make sure you've updated your application file: Sergiy -Original Message- From: Yura Tkachenko [mailto:[EMAIL PROTECTED] Sent: Sunday, January 08, 2006 3:52 PM To: tapestry-u

RE: All pages listener/interceptor

2005-12-28 Thread Sergiy Kyrylkov
In T3, you can inherit all pages not from BasePage but from your own page class which implements PageRenderListener. Sergiy > -Original Message- > From: albartell [mailto:[EMAIL PROTECTED] > Sent: Thursday, December 29, 2005 1:09 AM > To: tapestry-user@jakarta.apache.org > Subject: All p

RE: Tapestry 3 problem under Rational Application Developer 6.01

2005-12-21 Thread Sergiy Kyrylkov
This means you have an abstract method declared in Java and no corresponding property in page file or your getter/property has a typo and slightly differ from each other. Sergiy > -Original Message- > From: spm [mailto:[EMAIL PROTECTED] > Sent: Thursday, December 22, 2005 12:12 AM > To:

RE: spring or hivemind ??

2005-10-16 Thread Sergiy Kyrylkov
Here is the link that answers your first question: http://static.springframework.org/spring/docs/1.2.x/reference/webintegration .html#view-tapestry And yes it is possible to use Spring with Tapestry. Sergiy -Original Message- From: Mohammad Shamsi [mailto:[EMAIL PROTECTED] Sent: Monday

RE: Configuration mess

2005-10-10 Thread Sergiy Kyrylkov
What made you think it should work with these files in shared/lib? Have you read Tomcat documentation about this and class loaders in general? Sergiy -Original Message- From: Alexander Kolesnikov [mailto:[EMAIL PROTECTED] Sent: Monday, October 10, 2005 3:51 PM To: Tapestry users Subject

RE: Where is the source code for Tapestry 4 Virtual Library example ?

2005-09-30 Thread Sergiy Kyrylkov
Shing, Check Howard's blog on VL status in T4: http://howardlewisship.com/blog/ As I understand it is still being ported. Sergiy -Original Message- From: Shing Hing Man [mailto:[EMAIL PROTECTED] Sent: Saturday, October 01, 2005 4:31 AM To: tapestry Tapestry Subject: Where is the sourc

Email on exception

2005-09-22 Thread Sergiy Kyrylkov
Hi, Is it possible to extend Tapestry exception handling mechanism in an easy way to send exception report by e-mail to a specified address every time an exception occurs? Sergiy - To unsubscribe, e-mail: [EMAIL PROTECTED] For