Re: xtile results in firefox

2005-10-25 Thread Michael Engelhart
ssue, as well as matters of binary contents and l10n > chars. > > Best regards, > - mb > > Michael Engelhart wrote: > > Hi - > > > > I have a page that does an AJAX request using XTile that works > > perfectly in Safari yet in Firefox the result set always

xtile results in firefox

2005-10-25 Thread Michael Engelhart
Hi - I have a page that does an AJAX request using XTile that works perfectly in Safari yet in Firefox the result set always seems to stop at 10 or so items regardless of how many items are in the result set array. Anyone else experiencing this behavior? It occurs on both OS X and windows xp ver

Re: table sessionstate question

2005-10-07 Thread Michael Engelhart
recognized. > > Richard > > -Original Message- > From: Michael Engelhart [mailto:[EMAIL PROTECTED] > Sent: Friday, October 07, 2005 8:34 AM > To: Tapestry users > Subject: Re: table sessionstate question > > In case anyone runs into this, my solution was to use the n

Re: table sessionstate question

2005-10-07 Thread Michael Engelhart
In case anyone runs into this, my solution was to use the new style property specification in my .page so this: became: and everything worked as expected. I was under the impression that 3.x style .page files were respected but apparently not. Mike On 10/6/05, Michael Engelhart <[EM

table sessionstate question

2005-10-06 Thread Michael Engelhart
Hi - I have the following source object and table component specificed in my .page (Tapestry 4). When ever I try to sort or page through the data I get this error: Either the tableModel parameter or both source and columns paramet

ExpressionTableColumnModel in T4

2005-10-05 Thread Michael Engelhart
Hi all - I'm using T4 b9 and am trying to port some code that uses an ExpressionTableColumnModel and it's throwing a NullPointerException when it tries to render the page. In my iniit code I have something like this (edited for brevity): ExpressionTableColumnModel(new Object[] { "id", "Content

Re: JDK 1.5 required to build 4.0b4?

2005-08-14 Thread Michael Engelhart
Thanks - I must have misunderstood the directions then. Even in the latest E-Book that's out there you have to download hivemind from SVN and build that as well as get all the dependencies. Is none of that necessary??? Mike On 8/14/05, Onno Scheffers <[EMAIL PROTECTED]> wrote

JDK 1.5 required to build 4.0b4?

2005-08-14 Thread Michael Engelhart
Is this the case? I'm getting a TestValidatorFactory FAILED error. I saw an old post on 4.0a4 that said it requires 1.5 to build. if that is the case is there any idea when a binary going to be available. It's been very frustrating having to wait for a binary this late in the beta stage. I do

Ignoring pageBeginRender on component listener

2005-08-04 Thread Michael Engelhart
Hi - I have a component that has listener that gets a hidden form field out of the request context and then loads an object from the database, sets that object on the nextPage and then activates that page. My app is stateless BTW. The page the component is contained in still gets it's pageBe

Re: listener for DirectLink called twice

2005-08-04 Thread Michael Engelhart
I typically see this if I declare the same listener for a button submit > as well as the form (by accident). Making this mistake with a DirectLink > isn't as likely, but you might check. > > J > > -Original Message- > From: Michael Engelhart [mailto:[EMAIL PROTEC

listener for DirectLink called twice

2005-08-04 Thread Michael Engelhart
Hi - I have a DirectLink that calls a listener method and when I single click on the link, my log statements show that the method is getting called twice. Is there anything that causes this? I have not seen this behaviour previously in my code. I'm using Tapestry 3.0.3. Thanks Mike -

Ignoring listener response

2005-07-07 Thread Michael Engelhart
Hi - Is there a way to ingore the response generated after a listener is called? I have a need to submit a form to the server using JavaScript that passes the browsers window "state" so I can store it in the visit and ultimately into a database so that when the user comes back to the site and lo

Re: abstract base page spec

2005-07-01 Thread Michael Engelhart
he page scope, implement them on a component, > and drop the component on a page... > Cheers, > Ron > > > ציטוט Michael Engelhart: > > Thanks but I'm using Java 1.4.x and Tapestry 3.0. > > On 6/29/05, Nick Stuart <[EMAIL PROTECTED]> wrote: > > >

Re: abstract base page spec

2005-06-30 Thread Michael Engelhart
setSomePageProperty(String property){ > this.somePageProperty = property; > } > > protected void initialize() { > setSomePageProperty(null); > super.initialize(); > } > } > Jamie > > > > Michael Engelhart wrote: > > Hi - > > Is there

Re: abstract base page spec

2005-06-30 Thread Michael Engelhart
be able to access this just > implement the interface and call the method. Really is that easy. I > thought this was pretty slick at least. > > -Nick > > > On 6/29/05, Michael Engelhart <[EMAIL PROTECTED]> wrote: > > Hi - > > Is there a way to create a templat

abstract base page spec

2005-06-29 Thread Michael Engelhart
Hi - Is there a way to create a templateless abstract base page for a Tapestry app? I currently have a base page class that extends BasePage but I want to make that class be able to take advantage of a page specification to limit the writing of code make clean up of persistent properties easier.

Re: persistent properties and cleaning up HttpSession

2005-06-07 Thread Michael Engelhart
Well I went ahead and tried moving the HttpSession attributes that are mapped to my persistent page properties and they still didn't go away?! Can anyone confirm that they are actually stored in the HttpSession and nowhere else? Thanks Mike On 6/7/05, Michael Engelhart <[EMAIL PROTECTED

persistent properties and cleaning up HttpSession

2005-06-07 Thread Michael Engelhart
Hi - It's my understanding that using persistent page properties involves letting Tapestry shuffle objects back and forth from the users HttpSession. In our admin apps we have large object graphs that we need to store between requests and are thinking that we'd like to allow Tapestry to do the m

render block for contrib:table

2005-06-03 Thread Michael Engelhart
Hi - I'm running into LazyLoadExceptions using contrib:table so I had to create my own TableModel to allow my code to reattach the data in the model to hibernate. Anyway, when I was using the columns/source method of contib:table, I had a block like this: Product Name which worked fine.

contrib:table used for simple table generation

2005-06-02 Thread Michael Engelhart
Hi - I have a simple Collection of objects that only have a single attribute "name" that I want to display in rows and columns using contrib:table and am not sure of the way to get this to work. is there a way to tell contrib:table to go across while looping up to say 5 columns and then creating

Re: accessing a record()'d error from ValidationDelegate

2005-04-13 Thread Michael Engelhart
uffix() I simply do this: if (isInError()) { RenderString errorString = (RenderString) findCurrentTracking().getErrorRenderer(); writer.print(errorString.getString()); } works perfectly. On 4/13/05, Michael Engelhart <[EMAIL PROTECTED

accessing a record()'d error from ValidationDelegate

2005-04-13 Thread Michael Engelhart
Hi - How does one access an error set on a component like this: protected void recordError(IValidationDelegate delegate, String componentId, String message, ValidationConstraint constraint) { IFormComponent component = (IFormComponent) getComponent(componentId); delegate.setFormCom