Re: Popup a Tapestry page in a new window?

2006-12-19 Thread Istvan Szucs
Use the org.apache.tapestry.contrib.link.PopupLinkRenderer bean is your page. It is a example, visit this page: http://lombok.demon.co.uk/tapestry4Demo/TestPopup.html Bye! István Szücs > -Original Message- > From: [EMAIL PROTECTED] > Sent: Tue, 19 Dec 2006 15:49:44 +0100 > To: users@tape

Re: DatePicker timezone problem

2006-12-19 Thread Sam Gendler
OK, I'll check it out. Thanks. ---sam On 12/19/06, Jesse Kuhnert <[EMAIL PROTECTED]> wrote: Not sure if this helps but: -) The tacos DatePicker component uses a completely separate javascript package for the actual picker (that is used by a lot of people, even our jira instance) so I would b

Re: DatePicker timezone problem

2006-12-19 Thread Jesse Kuhnert
Not sure if this helps but: -) The tacos DatePicker component uses a completely separate javascript package for the actual picker (that is used by a lot of people, even our jira instance) so I would be surprised if it hadn't somehow figured these issues out already. -) The new DropdownDatePicker

DatePicker timezone problem

2006-12-19 Thread Sam Gendler
I'm only just starting to look into this problem, so I'll likely post more detail in future emails, but it looks as though there is a problem with the DatePicker component when the server and the client are not in the same timezone. Internally, the Calendar javascript object that is defined in Da

Re: EventListener , target being a programatically created widget (dojo)

2006-12-19 Thread Jesse Kuhnert
Have you even tried it? This is definitely thought out and well supported so I don't see why it wouldn't work. Dojo has an internal client side "manager" that knows about widgetId's so it lets me do things like dojo.widget.byId("yourComponent.clientId") to get a reference to your widget without a

Re: EventListener , target being a programatically created widget (dojo)

2006-12-19 Thread Alexandru Dragomir
The tapestry component extends AbstractWidget but i don't think this has any influence on targeting the widget.. Alex On 12/20/06, Alexandru Dragomir <[EMAIL PROTECTED]> wrote: I'm a bit confused.. What i want to target is not a tapestry component but the dojo widget created by the component

Re: EventListener , target being a programatically created widget (dojo)

2006-12-19 Thread Alexandru Dragomir
I'm a bit confused.. What i want to target is not a tapestry component but the dojo widget created by the component. As a matter of fact , in the generated html, the tapestry component id is not even present anymore. Instead i have the javascript which created the tree with the parameters provide

Re: EventListener , target being a programatically created widget (dojo)

2006-12-19 Thread Jesse Kuhnert
Yes that will work, but only if the component being targeted implements IWidget. (or extends AbstractWidget) On 12/19/06, Alexandru Dragomir <[EMAIL PROTECTED]> wrote: I might be asking too much : Is it possible to use the @EventListener with the target being a programatically created widget ?

Re: EventListener , target being a programatically created widget (dojo)

2006-12-19 Thread Alexandru Dragomir
In the mean time i found out that the afterAddChild is a topic . So my problem is solved by subscribing to this topic with whatever function i want. I'm still interested in the answer though. thanks for any feedback ! Alex On 12/19/06, Alexandru Dragomir <[EMAIL PROTECTED]> wrote: I might be

EventListener , target being a programatically created widget (dojo)

2006-12-19 Thread Alexandru Dragomir
I might be asking too much : Is it possible to use the @EventListener with the target being a programatically created widget ? The widget is the dojo tree widget. I built a tapestry component out of it , which creates the tree in a programatic way. At the creation of the tree i provide a widgetId

Standalone plugins

2006-12-19 Thread Pedro Abelleira Seco
Hello all, I has been a happy user of Tapestry 3 and since then stepped out of web development for a while. But I have to return there at some point. I would like to be able to do in a web application the same kind of things that are possible in client applications with respect to plugins. The i

Re: Problem when using morwe than one intance of an Autocompleter

2006-12-19 Thread Jesse Kuhnert
I did try this and couldn't reproduce any problems. So, not sure what to say based on what you've said so far. On 12/18/06, Chris Perfect <[EMAIL PROTECTED]> wrote: Hello, I am having an issue with 4.1.1 (latest snapshot): I have created a component with various form elements that includes an Au

Re: External page URL change in Tapestry 4

2006-12-19 Thread Martin Strand
Hi Robert. I solved this by using the UrlRewriteFilter: http://tuckey.org/urlrewrite/ Since you don't need to generate the old urls anymore, a custom service encoder isn't really necessary and the UrlRewriteFilter will probably be sufficient. You can even unit test the rewrite rules. :)

External page URL change in Tapestry 4

2006-12-19 Thread Robert J. Walker
I'm upgrading our existing applications from Tapestry 3.1 to Tapestry 4.1. One problem we have is that we send emails to our users with links to an IExternalPage. The URL format for this has changed in Tapestry 4, so when we release, all the links in emails sent before the release will be broken

org.apache.xalan.processor.TransformerFactoryImpl not found tapestry

2006-12-19 Thread Daniel Jue
Hi, I am using Tapestry 4.0.2, Tomcat 5.5.17, starting Tomcat server via Eclipse. I'm getting an error in the console when I add the Contrib:Timeout component to a page. http://tapestry.apache.org/tapestry4/tapestry-contrib/ComponentReference/Timeout.html First I'll give the setup and the error t

Problem with InlineEditBox on persisted page property

2006-12-19 Thread Shing Hing Man
I am using the component InlineEditBox, in Tapestry 4.1.2 snapshot, to edit a persisted (with session scope) property called description on page TestInlineEditBox. I have noticed the changes done to the property description is lost if I leave the page TestInlineEditBox and come back to it later.

Re: [Tap4.0.2] about @Persist("client")

2006-12-19 Thread Cyrille37
andyhot a écrit : client, client:page, client:app all use url rewritting to store the property... Effectively, I've tried different @Persist("xxx") and no cookie was set. So, what's the problem again? The problem is with Glassfish. With Glassfish (and all libraries used by my project) the pe

Re: Localized validation messages

2006-12-19 Thread Greg Ward
On 12/19/06, Marilen Corciovei <[EMAIL PROTECTED]> wrote: In fact you don't need to overwrite the ValidationStrings.properties which is supposed to be the default one. You just need to have the ValidationStrings_{locale_code}.properties. In order to add french validation to Tapestry I created a T

Re: [Tap4.0.2] about @Persist("client")

2006-12-19 Thread andyhot
client, client:page, client:app all use url rewritting to store the property... So, what's the problem again? Cyrille37 wrote: Ron Piterman a écrit : forgot about cookies just before christmas? what do you eat those days? :) Ron Chocolate :) By the way. This is not cookies ! But Server

Re: Popup a Tapestry page in a new window?

2006-12-19 Thread Norbert Sándor
Use the "target" parameter of the link components with value "_blank". BR: Norbi talk.small írta: How to create a href, when it is cliked, I can specify a Tapestry page to popup in a new window (instead of refrreshing the current page)? Thanks, Talk.small -

RE: Popup a Tapestry page in a new window?

2006-12-19 Thread Carlos.Fernandez
If you don't need the fine-grained control that 'window.open' offers, you could just use the target attribute in your links. Carlos -Original Message- From: talk.small [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 19, 2006 9:23 AM To: users@tapestry.apache.org Subject: Popup a Tapest

Re: [Tap4.0.2] about @Persist("client")

2006-12-19 Thread Cyrille37
Ron Piterman a écrit : forgot about cookies just before christmas? what do you eat those days? :) Ron Chocolate :) By the way. This is not cookies ! But Server ! Argh... ... I'm dying The problem does not exists when the application is running on Tomcat 5.5.17 but exists when running on

Problems with Jetty and a Webapp

2006-12-19 Thread Miguel Angel Hernández
Hi everyone, Is anyone fammiliar with this kind of exception from Jetty: [HttpConnection] GET /soni/liquidacion/Liquidaciones.html?tap_jsc_ts=1166488843005 HTTP/1.1 java.io.IOException: closed at org.mortbay.http.HttpOutputStream.prepareOutput( HttpOutputStream.java:452) at org.mo

Re: Popup a Tapestry page in a new window?

2006-12-19 Thread Shing Hing Man
The following might be useful. http://lombok.demon.co.uk/tapestry4Demo/TestPopup.html The renderer parameter of the component PageLink allows you to open a page in a new window. http://tapestry.apache.org/tapestry4/tapestry/ComponentReference/PageLink.html Shing --- "talk.small" <[EMAIL PROTEC

Popup a Tapestry page in a new window?

2006-12-19 Thread talk.small
How to create a href, when it is cliked, I can specify a Tapestry page to popup in a new window (instead of refrreshing the current page)? Thanks, Talk.small -- View this message in context: http://www.nabble.com/Popup-a-Tapestry-page-in-a-new-window--tf2846158.html#a7947816 Sent from the Tapes

Re: [Tap4.0.2] about @Persist("client")

2006-12-19 Thread Ron Piterman
forgot about cookies just before christmas? what do you eat those days? :) Ron Cyrille37 wrote: > Ron Piterman a écrit : >> user @Persist("client:page") >> >> AFAIK, "client" uses cookies. >> > Argh! I've forgotten those so delicious cookies. > Sorry for the noise and thanks Ron for your fast a

Re: [Tap4.0.2] about @Persist("client")

2006-12-19 Thread Cyrille37
Ron Piterman a écrit : user @Persist("client:page") AFAIK, "client" uses cookies. Argh! I've forgotten those so delicious cookies. Sorry for the noise and thanks Ron for your fast and efficient answer ! Cheers cyrille Cheers, Ron Cyrille37 wrote: Hello, There is something I do not u

Re: [Tap4.0.2] about @Persist("client")

2006-12-19 Thread Ron Piterman
user @Persist("client:page") AFAIK, "client" uses cookies. Cheers, Ron Cyrille37 wrote: > Hello, > There is something I do not understand. > > I've got a page which remember a property "docId" with the > @Persist("client") annotation. >@Persist("client") >public abstract int getDocId()

[Tap4.0.2] about @Persist("client")

2006-12-19 Thread Cyrille37
Hello, There is something I do not understand. I've got a page which remember a property "docId" with the @Persist("client") annotation. @Persist("client") public abstract int getDocId(); public abstract void setDocId(int docId); When I call the page with an ExternalLink (service=exte

Re: Localized validation messages

2006-12-19 Thread Martin Strand
for custom validation messages you can do something like this: note the % in front of the message key read more here: http://tapestry.apache.org/tapestry4.1/usersguide/validation.html On Tue, 19 Dec 2006 11:22:31 +0100, Cyrille37 <[EMAIL PROTECTED]> wrote: Marilen Corciovei a écrit : In fa

Migration experiences (3.0 -> 4.1?)

2006-12-19 Thread Marilen Corciovei
Hello, I have been working on a Tapestry based product started almost 2.5 years ago. It's a CMS based product targeted at french cityhalls sites (as described here: http://www.nemesisit.ro/clients/case-study ). This was build on 3.0 beta and then on 3.0.3. Now it's in production from more than one

Job Offer in Germany/Berlin

2006-12-19 Thread Ron Piterman
Hi All, The Company I am working for is searching for tapestry developer in Berlin/Germany. The application we are developing is base on tapestry 4.0 with a custom ajax extention based on dojo. The team contains currently 3 highly skilled j2ee developers and 1 front end (tapestry) developer. On

Re: Localized validation messages

2006-12-19 Thread andyhot
http://tapestry.apache.org/tapestry4.1/usersguide/localization.html See the namespace message catalogs Marilen Corciovei wrote: On Tue, 2006-12-19 at 11:22 +0100, Cyrille37 wrote: Marilen Corciovei a écrit : In fact you don't need to overwrite the ValidationStrings.properties which

Re: Localized validation messages

2006-12-19 Thread Marilen Corciovei
On Tue, 2006-12-19 at 11:22 +0100, Cyrille37 wrote: > Marilen Corciovei a écrit : > > In fact you don't need to overwrite the ValidationStrings.properties > > which is supposed to be the default one. You just need to have the > > ValidationStrings_{locale_code}.properties. In order to add french >

Re: Localized validation messages

2006-12-19 Thread Cyrille37
Marilen Corciovei a écrit : In fact you don't need to overwrite the ValidationStrings.properties which is supposed to be the default one. You just need to have the ValidationStrings_{locale_code}.properties. In order to add french validation to Tapestry I created a Tapestry-french-validation.jar

Re: Localized validation messages

2006-12-19 Thread Marilen Corciovei
In fact you don't need to overwrite the ValidationStrings.properties which is supposed to be the default one. You just need to have the ValidationStrings_{locale_code}.properties. In order to add french validation to Tapestry I created a Tapestry-french-validation.jar in the lib with the following

Re: EventListener in combination with Dialog component

2006-12-19 Thread Tine
Hello, thanks for your answer. In Firefox the problem has been solved but in IE it still does not work the right way. After calling the listener and updating the second PropertySelection component the values of this selection have been lost. Can you reproduce this behavior? Has anyone an idea h