RE: Maximize Portlet

2006-08-08 Thread Joel Trunick
ot; do you mean a Listener method? Page 50 (among others) of the JSR 168 spec lists conditions where one may not call setWindowState() and where an exception should be thrown. Thanks, Ezra Epstein -Original Message----- From: Joel Trunick [mailto:[EMAIL PROTECTED] Sent: Monday, August

Maximize Portlet

2006-08-07 Thread Joel Trunick
I'm doing getActionResponse().setWindowState(WindowState.MAXIMIZED) as part of a DirectLink call. This apparently throws an exception in Liferay. How does one maximize the window? Joel -Original Message- From: Michael Becke [mailto:[EMAIL PROTECTED] Sent: Friday, March 31, 2006 7:53 A

Portlet Examples

2006-07-27 Thread Joel Trunick
I have not seen any samples of Tapestry portlets on the web, there is a hello world one described on this forum, but it would be nice to have code samples. Anyone know of any? Joel - To unsubscribe, e-mail: [EMAIL PROTECTED] Fo

RE: [OT] Questions about Hibernate and large binary field

2006-05-18 Thread Joel Trunick
Hibernate really misses the mark in this regard. A reasonable solution would be to mark that property as lazy, but then you have to do class post-processing to get it to work --- something that even the hibernate site recommends against (unbelievable!). The easiest solution is to store the bytes i

Spindle - Move implicit to spec.

2006-05-16 Thread Joel Trunick
I can't get the Refactor - move implicit spec. to enable in Spindle. Is there some trick? I'm using Spindle 3.2.14 under Eclipse 3.1.1. Joel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PR

RE: Multiple forms on page / Multiple Link submits

2006-05-11 Thread Joel Trunick
forms on page / Multiple Link submits Do you have forms nested inside each others? Make sure you close each form before opening the next. MARK Joel Trunick wrote: Yes, all @LinkSubmits are within a @Form to submit that form. I noticed some thread here about not using the same listener

RE: Multiple forms on page / Multiple Link submits

2006-05-11 Thread Joel Trunick
] Sent: Thursday, May 11, 2006 2:24 PM To: Tapestry users Subject: Re: Multiple forms on page / Multiple Link submits Don't you have each @LinkSubmit inside each @Form ? Joel Trunick wrote: > I have a component that contains a form component which contains > LinkSubmit components. It work

Multiple forms on page / Multiple Link submits

2006-05-11 Thread Joel Trunick
I have a component that contains a form component which contains LinkSubmit components. It works fine when there is only one instance of the form component on the page, however, I put multiple instance of the form component on the page, I get stale link errors when clicking on the LinkSubmits. Ap