Re: [Announce] Clepsydra 0.8

2006-08-02 Thread Peter Svensson
Yes, this should be added as a link somewhere. Couldn't someone set up a list on the official site with links to Tapestry powered apps? This should be there. Cheers, PS On 8/2/06, Nick Westgate [EMAIL PROTECTED] wrote: Hi Jean-Yves. Since nobody else has complimented you yet, this looks

Re: Localized validation messages

2006-08-02 Thread Ivano
The resourse bundle files need to be on the classpath. Try moving them to WEB-INF/classes. Malin Ljungh wrote: Gah! Please save me from madness... I've posted earlier about validation messages. I'm now stuck on getting them localized. I keep getting the following exception:

RE: Localized validation messages

2006-08-02 Thread Firas Adiler
Hi Malin, That's because Tapestry looks for username-not-unique in the properties file bundeled with Tapestry. To override it, your ValidationStrings.properties should have this path {CLASS_PATH_ROOT}/org/apache/tapestry/valid/ValidationStrings.properties. To do that: create the package

Re: Tapestry 5 Discussions

2006-08-02 Thread Danny Angus
Howard Lewis Ship [EMAIL PROTECTED] wrote on 01/08/2006 17:34:47: snip/ I tend to agree with most of what you said. The central issue is backwards compatibility. As the upgrade from 2 to 3 to 4 has shown, adding new features to Tapestry often breaks existing code. This is a reaction to the

RE: Re: Tapestry 5 Discussions

2006-08-02 Thread Danny Angus
Epstein, Ezra [EMAIL PROTECTED] wrote on 01/08/2006 21:31:27: Rather I was questioning how the decision about IoC adoption is being made. At the time HiveMind got started the IoC container space was pretty open and empty. I don't really think thats true at all, but Hivemind did have some

how to do pagin

2006-08-02 Thread zqzuk
hi, just wondering if theres any element that allows auto-paging search results... im using the FOR element to output search results btw. thank u -- View this message in context: http://www.nabble.com/how-to-do-pagin-tf2039441.html#a5612493 Sent from the Tapestry - User forum at Nabble.com.

RE: opening up a new windown onclick

2006-08-02 Thread Kristian Marinkovic
if you use HTML 4.01 or XHTML 1.0 Transitional you could define a target attribute a target=_blank/a pure html :) g, kris zqzuk

Re: opening up a new windown onclick

2006-08-02 Thread Nick Westgate
Check the FAQ: http://tapestry.apache.org/tapestry4/faq.html The answer to your other question is contrib:Table. There's a good T3 tutorial WAR if you search this list's archives. Cheers, Nick. zqzuk wrote: Hi, how can i enable a directlink to open up a separate window on click, rather than

Re: [Announce] Clepsydra 0.8

2006-08-02 Thread Peter Svensson
Dang! I saw that and immediately thought it as a list of example apps that one could look at as a newbie or for special interrests. Maybe it would have been better with Success stories or Projects powered by .. or something.. Yes, yes, I know, I can add it... It just would feel more proper to

Re: [Announce] Clepsydra 0.8

2006-08-02 Thread Jean-Yves Sironneau
Thank you Nick. On 8/2/06, Nick Westgate [EMAIL PROTECTED] wrote: Hi Jean-Yves. Since nobody else has complimented you yet, this looks cool. Thanks for sharing! Cheers, Nick. Jean-Yves Sironneau wrote: I just wanted to let you know that the first release of Clepsydra a GPL licensed web

Re: opening up a new windown onclick

2006-08-02 Thread zqzuk
thanks :) -- View this message in context: http://www.nabble.com/opening-up-a-new-windown-onclick-tf2039446.html#a5613778 Sent from the Tapestry - User forum at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: recursive rendering

2006-08-02 Thread Bernard Lange
Dan Adams wrote: Every once in a while I'll need to do some recursive rendering. Does anyone know of a simple example of this using @Block? We do it that way. This renders tree-like, no folding though, recursive structure of report groups containing other report groups (which are compound

Re: Auto-updating a drop-down list

2006-08-02 Thread Waimun Yeow
Jesse and Nick, Thanks for the suggestions (1) EventListener (2) DynamicSelectionList. I am currently using Tap 3.03 and perhaps this is a good chance to upgrade if I want to take advantage of 4.1 features. But I am concerned whether if I need to make a lot of changes to the way I

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: how to do pagin

2006-08-02 Thread James Carman
Are you looking to only query for the rows that you need? Are you using Hibernate? If so, then I need to get my HibernateTableModel out there somewhere. OR, you can use the one that's becoming available in Trails. Chris IMed me this morning and said that he's done with it! Chris, I hope I

Could really use another set of eyes for this one...

2006-08-02 Thread Dan Adams
One of the pages in the project I'm working on basically reads an xml file and then dynamically builds a form at render time with a number of components based on the xml. And of course I'm using @Blocks to do this. So I have something like this (pseudotemplate): for source=fields value=field

Re: Localized validation messages

2006-08-02 Thread Malin Ljungh
Yeeehaa! It works :D Thank you Firas! TACK ;) /Malin On 8/2/06, Firas Adiler [EMAIL PROTECTED] wrote: Hi Malin, That's because Tapestry looks for username-not-unique in the properties file bundeled with Tapestry. To override it, your ValidationStrings.properties should have this path

Ajax form question about Tapestry 4.1

2006-08-02 Thread Denis Souza
Hi, I was looking at the new Tapestry 4.1 ajax features. EventListener/ResponseBuilder are really nice! Besides the new annotations I noticed some components (such as DirectLink) already have the Tacos ajax functionality built in which allows you to update a certain part of the page

Re: Ajax form question about Tapestry 4.1

2006-08-02 Thread Josh Long
Yeah I was sort of wondering the same thing, and in particular, how do I get validation messages to render via ajax -- that is, i wat the form to go through the normal validation routine and I dont want to enable client side validation. I actually kind of like the red stars and custom decorators

Re: how to do pagin

2006-08-02 Thread Peter Svensson
Thar she blows!! What's this?? Is there user servicable parts inside?? Cheers, PS On 8/2/06, James Carman [EMAIL PROTECTED] wrote: Are you looking to only query for the rows that you need? Are you using Hibernate? If so, then I need to get my HibernateTableModel out there somewhere. OR,

Re: Could really use another set of eyes for this one...

2006-08-02 Thread Dan Adams
Some more info: If I do fieldset textfield it works fine. But if I do three nested fieldsets like: fieldset fieldset fieldset then when it renders the last fieldset (or any element) it doesn't actually evaluate the called to getBlock in the @RenderBlock. Am I missing something? Here is

[ANN] WebReboot Development Server

2006-08-02 Thread Kevin Menard
Hi all, In a recent thread on T5, Howard said the only thing he asked for in return is to see Tapestry get some exposure. So, in that vain, I'm announcing the release of a small product based on Tapestry 4 here. Briefly, we make a product called the WebReboot. We provide an API for integrating

Re: [ANN] WebReboot Development Server

2006-08-02 Thread Dan Adams
Looks good Kevin! :) On Wed, 2006-08-02 at 15:52 -0400, Kevin Menard wrote: Hi all, In a recent thread on T5, Howard said the only thing he asked for in return is to see Tapestry get some exposure. So, in that vain, I'm announcing the release of a small product based on Tapestry 4 here.

Re: Ajax form question about Tapestry 4.1

2006-08-02 Thread Jesse Kuhnert
I've been trying to avoid adding too many new parameters (like updateComponents) all over the place before I felt like I had found a good way to do this without code duplication. It's probably fair that I at least add them to form/form button based components though. As for Forms, you could

RE: Ajax form question about Tapestry 4.1

2006-08-02 Thread Denis Souza
I've been trying to avoid adding too many new parameters (like updateComponents) all over the place before I felt like I had found a good way to do this without code duplication. I'm all for reducing the number of parameters as long as there some other way to do the same thing. It's just that

Re: Ajax form question about Tapestry 4.1

2006-08-02 Thread Jesse Kuhnert
Sounds like a possible bug. It makes sense though now.. All the @EventListener would do in this instance is bind to the event happening, not interfere with what happens. Your form submitting probably just blew away any chance of having the ajax stuff completing :) On 8/2/06, Denis Souza [EMAIL

Portlets on Tapestry 4.1

2006-08-02 Thread Epstein, Ezra
We want to move to 4.1 for our portlets. Reading up I find: By default, the Shell component will include the core dojo javascript object dojo.js, as well as the new core Tapestry javascript object - core.js. This means that you don't have to worry about how to include dojo or Tapestry

Re: Portlets on Tapestry 4.1

2006-08-02 Thread Jesse Kuhnert
Hmm...Good question. I will answer with a documentation page. On 8/2/06, Epstein, Ezra [EMAIL PROTECTED] wrote: We want to move to 4.1 for our portlets. Reading up I find: By default, the Shell component will include the core dojo javascript object dojo.js, as well as the new core Tapestry

RE: recursive rendering

2006-08-02 Thread Epstein, Ezra
This may not be the issue, but... You could make a dyna-eval component that (re-)evaluates an ognl expression wherever/whenever you choose. OGNL is pretty easy to work with. Perhaps that could work? Thanks, Ezra Epstein -Original Message- From: Dan Adams [mailto:[EMAIL PROTECTED]

Re: Portlets on Tapestry 4.1

2006-08-02 Thread Jesse Kuhnert
Ok, I think I'm a little out of my element here. I can't honestly say I understand the day to day sort of development patterns that people use with Tapestry portlets. Is there an equivalent idea to something containing each page? (ie something that handles stylesheets/ etc ?) Rather than

Did IRequestCycle.getResponseBuilder() disappear in the latest snapshot? if so, whats the replacement?

2006-08-02 Thread Josh Long
Hello all, Did IRequestCycle.getResponseBuilder() disappear in the latest snapshot? if so, whats the replacement? Thanks, Joshua - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Did IRequestCycle.getResponseBuilder() disappear in the latest snapshot? if so, whats the replacement?

2006-08-02 Thread Jesse Kuhnert
No. (Geez I hope not) What gave you that impression? On 8/2/06, Josh Long [EMAIL PROTECTED] wrote: Hello all, Did IRequestCycle.getResponseBuilder() disappear in the latest snapshot? if so, whats the replacement? Thanks, Joshua

Q: tapestry-spring

2006-08-02 Thread Anton Nikitin
Hi all, On his tapestry-spring contribution [http://howardlewisship.com/tapestry-javaforge/tapestry-spring/], Howard mentioned that ...injecting Spring beans that are not singletons doesn't work properly... How exactly is this manifested? I tried a very quick example, using a bean mapped like

Re: Auto-updating a drop-down list

2006-08-02 Thread Nick Westgate
Hi Waimun. DynamicSelectionList works fine, but I needed to change it a bit for my use. Just download it and see if it does what you want. Shing Hing Man (who is on this list) wrote it, and has docs and online demos here:

Re: Tap 4.0 + Tacos -- Upgrade to Tap 4.1

2006-08-02 Thread Karthik N
I'm also very keen to know the answer to this. Considering that Tap 4.1 is round-the-corner, we're wondering whether to go ahead and use Tacos in our projects, and be able to refactor then with minimal effort when they become a part of Tapestry 4.1? Also any Tacos components that might get

Re: Tap 4.0 + Tacos -- Upgrade to Tap 4.1

2006-08-02 Thread Jesse Kuhnert
Oh what a familiar theme we weave I wasn't very happy with the way we had to do certain things in tacos the first time around, so I'm trying as much as possible to not let myself apply tacos to Tapestry as much as possible. That being said, I have added a few key services which tacos could

RoR

2006-08-02 Thread Wim V
Im tired of getting mails after I unsubscribed from this mailing list, so I'm simply gonna abuse it. Tired of using hibernate? Tired of having to config all the time? Tired of deploying? Need something that comes as a whole package? Tired of Java and Tapestry verboseness? Tired of this damn