integration w/ 3rd-party forum packages

2006-10-03 Thread Danny Mandel
Hi all, Has anyone done any sort of Tapestry integration with 3rd-party forum packages (e.g. phpBB, jForum, etc.)? We are looking at doing something similar and I was looking for others' experiences (good or bad) in doing so. Thanks, Danny ---

Re: return to a specified anchor in a page from a listener method?

2006-08-22 Thread Danny Mandel
Hi Andy, That works for me! Thanks, Danny andyhot wrote: Danny Mandel wrote: Hi, Thanks Jesse. My use case was within a form listener method, so as far as I could tell, there was no anchor parameter to be bound. Reading the other messages in this thread I think the cycle.activate

Re: return to a specified anchor in a page from a listener method?

2006-08-22 Thread Danny Mandel
t should probable be fixed. What do you think would feel most "convenient" for you? On 8/21/06, Danny Mandel <[EMAIL PROTECTED]> wrote: Hi all, I know that it wasn't possible (through the framework) in Tapestry 3 to return a specific page at a specific anchor from a

return to a specified anchor in a page from a listener method?

2006-08-21 Thread Danny Mandel
Hi all, I know that it wasn't possible (through the framework) in Tapestry 3 to return a specific page at a specific anchor from a listener method. Is this now possible in Tapestry 4? If not, does anyone have any suggestions for working around this? I've written some javascript to refresh

Re: tapernate anonymous svn access?

2006-08-11 Thread Danny Mandel
ld be able to get it. Thanks, Danny James Carman wrote: I tried accessing the JavaForge svn repo today with anonymous/anon and it denied me. Is that what you mean? That's where tapernate is supposed to be living. -Original Message- From: Danny Mandel [mailto:[EMAIL PROTECTED]

tapernate anonymous svn access?

2006-08-10 Thread Danny Mandel
I'm having problems getting to Tapernate's SVN repository without a username and password (the url from the webpage is: http://svn.javaforge.com/svn/tapestry/tapernate/trunk). Is anyone else having problems or have I done something silly? Thanks, Danny ---

Re: how to do pagin

2006-08-02 Thread Danny Mandel
Hi, Take a look at contrib:table: http://tapestry.apache.org/tapestry4/tapestry-contrib/ComponentReference/Table.html This will do what you want. Danny zqzuk wrote: hi, just wondering if theres any element that allows auto-paging search results... im using the FOR element to output search re

Re: How to pass a parameter to an ASO constructor?

2006-08-01 Thread Danny Mandel
} public void setBooleanState(boolean booleanState) { This.booleanState = booleanState; } public Object createStateObject() { return new Boolean(booleanState); } } -Original Message- From: Danny Mandel [mailto:[EMAIL PROTEC

Re: How to pass a parameter to an ASO constructor?

2006-08-01 Thread Danny Mandel
Ping? Short story is that I'm attempting to pass a constructor argument (in this case, the boolean false) when creating my ASO. I've continued searching for this and am still stuck. The closest thing I found on the wiki and attempted to adapt to my needs was this:

Re: 3.0 -> 4.0 upgrade and parameter differences

2006-07-31 Thread Danny Mandel
() as your chance to copy the parameter value to the temporary property. On 7/27/06, Danny Mandel <[EMAIL PROTECTED]> wrote: Hi all, I'm finally getting around to upgrading my 3.0 codebase and things are going spectacularly! However, I have a case where it seems the new component pa

How to pass a parameter to an ASO constructor?

2006-07-28 Thread Danny Mandel
Hi all, I'm trying to figure out how to pass a constructor argument when constructing an ASO. I have a java.lang.Boolean, and it *needs* to have a parameter passed in the constructor (no empty-arg constructor exists). I know this ought to be simple, but I don't see any documentation explain

3.0 -> 4.0 upgrade and parameter differences

2006-07-27 Thread Danny Mandel
Hi all, I'm finally getting around to upgrading my 3.0 codebase and things are going spectacularly! However, I have a case where it seems the new component parameter handling isn't doing what I would like it to (it's a rare case-- almost all others make much more sense now!), and I was wonde

Re: Passing data from tapestry to html

2006-07-09 Thread Danny Mandel
Hi Peter, I think you want the Any component. Assuming you had a method called getHeight() in your java class you could accomplish what you described as follows: Hope that helps, Danny Peter Dawn wrote: hi all, i want to send a integer variable from my tapestry java page to the tapestry

Re: XMLHTTPRequest within tapestry

2006-06-01 Thread Danny Mandel
Hi Peter, take a look at XTile for Tapestry 3.x here: http://www.t-deli.com/ For simple stuff, it's quite easy to use and very lightweight. Hth, Danny Peter Dawn wrote: i am using tapestry 3.0.3 and i want to use something very light, without the advanced features. is there some coding exampl

Re: @Persist documentation?

2006-06-01 Thread Danny Mandel
Hi, try here: http://jakarta.apache.org/tapestry/tapestry-annotations/index.html#Persist and here: http://jakarta.apache.org/tapestry/tapestry-annotations/apidocs/org/apache/tapestry/annotations/Persist.html Hth, Danny Jean-Eric Cuendet wrote: Hi, I'm unable to find @Persist annotation doc..