RE: T5 problem with multiple submit buttons

2008-06-18 Thread Janko Muzykant
yes, it's exactly the same situation - form linked with zone. thanks Ben for pointing out this jira issue. jm. Ben Sommerville-2 wrote: > > Is your form using a zone? > If so, you may have hit this bug > https://issues.apache.org/jira/browse/TAPESTRY-2324 > > cheers > Ben > >> -Origina

答复: How to use t5.0.13

2008-06-18 Thread 滕训华
Yes,I have changed the class name of the web.xml. -邮件原件- 发件人: Martijn Brinkers (List) [mailto:[EMAIL PROTECTED] 发送时间: 2008年6月19日 13:34 收件人: Tapestry users 主题: Re: How to use t5.0.13 Did you change web.xml (specifically org.apache.tapestry5.TapestryFilter) as well? Martijn Brinkers On

Re: T5 5.0.13 has drop TapestryConstants package ?

2008-06-18 Thread buckofive
LITERAL_BINDING_PREFIX and PROP_BINDING_PREFIX are now in org.apache.tapestry5.BindingConstants as LITERAL and PROP Cheers CG-6 wrote: > > Hi Weisu, > I did come across this SymbolConstants but it does not contain > LITERAL_BINDING_PREFIX and PROP_BINDING_PREFIX .. > > CG > > > > > On

Re: How to use t5.0.13

2008-06-18 Thread Martijn Brinkers (List)
Did you change web.xml (specifically org.apache.tapestry5.TapestryFilter) as well? Martijn Brinkers On Thu, 2008-06-19 at 13:24 +0800, 滕训华 wrote: > I found that t5.0.13 can download,so I download it and replace the jars with > new version and change org.apache.tapestry into org.apache.tapestry5,

How to use t5.0.13

2008-06-18 Thread 滕训华
I found that t5.0.13 can download,so I download it and replace the jars with new version and change org.apache.tapestry into org.apache.tapestry5,but why I can not start the tomcat server in eclipse What i forget to do ?

Re: T5 Sending a 302 redirect off-site from within a Form handler

2008-06-18 Thread Howard Lewis Ship
You should be able to simply return a java.net.URL. On Wed, Jun 18, 2008 at 9:55 PM, Ezra Epstein <[EMAIL PROTECTED]> wrote: > I've got a simple form and an onSubmit() method. When the form > submission succeeds I want to redirect to another site (full URL) but > can't figure out how to do that.

T5 Sending a 302 redirect off-site from within a Form handler

2008-06-18 Thread Ezra Epstein
I've got a simple form and an onSubmit() method. When the form submission succeeds I want to redirect to another site (full URL) but can't figure out how to do that. I've tried: @Inject @Service("Response") private Response tapestryResponse

RE: T5 problem with multiple submit buttons

2008-06-18 Thread Ben Sommerville
Is your form using a zone? If so, you may have hit this bug https://issues.apache.org/jira/browse/TAPESTRY-2324 cheers Ben > -Original Message- > From: Janko Muzykant [mailto:[EMAIL PROTECTED] > > > ups, sorry for not specifing that. i'm using latest tapestry 5.0.13. > > jm. > Massim

Re: configuring a service for shutdown notification

2008-06-18 Thread eduardo cavalcanti
Hello, You are right. I have initially coded: public interface DataService {... and public class DataServiceImpl implements DataService, RegistryShutdownListener {... hence the typecast. Doing: public interface DataService extends RegistryShutdownListener {... and public class DataServiceImpl

Re: configuring a service for shutdown notification

2008-06-18 Thread Howard Lewis Ship
I would have written it as: public DataService buildDataService(RegistryShutdownHub hub) { DataServiceImpl service = new DataServiceImpl(); hub.addRegistryShutdownListener(service); return service; } I don't like unnecessary casts. On Wed, Jun 18, 2008 at 7:07 PM, eduardo cavalcanti <[EM

Re: configuring a service for shutdown notification

2008-06-18 Thread eduardo cavalcanti
Thanks a lot, Kristian, That's it. Just for the record, the final form of the service registration method, on AppModule: public DataService buildDataService(RegistryShutdownHub hub) { DataService ds = new DataServiceImpl(); hub.addRegistryShutdownListener((RegistryShutdownListe

Re: T5.0.11 deadlock (resend including stacktrace :-)

2008-06-18 Thread Howard Lewis Ship
Please add an issue to JIRA. Looks like there's a situation where one thread is transforming classes while another thread is creating PropertyConduit classes. We'll need to create a mutex for this case. On Tue, Jun 17, 2008 at 10:07 PM, <[EMAIL PROTECTED]> wrote: > Hi All! > > (resend because o

[ANNOUNCE] Tapestry 5.0.13

2008-06-18 Thread Howard Lewis Ship
The latest release of Tapestry, Tapestry 5.0.13 , is now available. Tapestry 5.0.13 is just about feature complete and can be considered a beta release. A release candidate is expected in the near future. 5.0.13 adds quite a bit of improved Ajax functionality, and addresses a large number of bug

Re: T5 5.0.13 has drop TapestryConstants package ?

2008-06-18 Thread CG
Hi Weisu, I did come across this SymbolConstants but it does not contain LITERAL_BINDING_PREFIX and PROP_BINDING_PREFIX .. CG On Thu, Jun 19, 2008 at 8:55 AM, Weisu <[EMAIL PROTECTED]> wrote: > > Hi CG, in T5.0.13, this has changed to 'SymbolConstants' and is under > org.apache.tapestry5.*

Re: T5 5.0.13 has drop TapestryConstants package ?

2008-06-18 Thread Weisu
Hi CG, in T5.0.13, this has changed to 'SymbolConstants' and is under org.apache.tapestry5.* Weisu. CG-6 wrote: > > I am a newbie , my question may a bit weird because I do not have deep > knowledge in Tapestry. > > I am following this article in wiki to create own binding prefix to > support a

T5 5.0.13 has drop TapestryConstants package ?

2008-06-18 Thread CG
I am a newbie , my question may a bit weird because I do not have deep knowledge in Tapestry. I am following this article in wiki to create own binding prefix to support array/list values http://wiki.apache.org/tapestry/Tapestry5HowToAddBindingPrefix my program work fine in 5.0.11 but it does

答复: Tapestry5 and new Window

2008-06-18 Thread 滕训华
Thanks,Filip, t5components only work with 5.0.13 or up,but I compile the t5. 0.13 from it's source,it also gets same error. -邮件原件- 发件人: Filip S. Adamsen [mailto:[EMAIL PROTECTED] 发送时间: 2008年6月18日 20:39 收件人: Tapestry users 主题: Re: Tapestry5 and new Window No, t5components won't work with

T5: component as a parameter to another component

2008-06-18 Thread Chris Lewis
Hello all, I'm working with an app that has a component to display a list of objects. Part of the display of each object is the date (a field from the object), and I'd like to make the rendering of that part flexible. Normally a dateformat component would do, but in this case it's not enough becau

Zones and blocks inside components

2008-06-18 Thread Mohan Zhang
Hi everyone, I've been reading the mailing list for a while now and have only seen one post on this topic, which unfortunately did not clarify things for me. I know this question has probably been asked a few times either indirectly or whatnot, but I'm curious to find out if the problem is someth

re: Id not generated for actionlinks in grid ...

2008-06-18 Thread Glenn Sudduth
This works perfectly. Thanks. -- Glenn On Wed, 2008-06-18 at 11:14 +0200, Kristian Marinkovic wrote: > hi Glenn, > > i took a look at the current implementation of the ActionLink and it > seems that the "id" attribute is only rendered if it is really needed ( > in case of zones, for JavaScript e

Re: T5 problem with multiple submit buttons

2008-06-18 Thread Janko Muzykant
ups, sorry for not specifing that. i'm using latest tapestry 5.0.13. jm. Massimo Lusetti wrote: > > On Wed, Jun 18, 2008 at 3:16 PM, Janko Muzykant <[EMAIL PROTECTED]> wrote: > >> >> hi, something is not working with handling events fired by different >> submit >> buttons (or i have overlooke

Re: T 5.0 - format grid column

2008-06-18 Thread Marcus
Hi mdmota, The project site was updated with installation instructions. http://code.google.com/p/myt5lib/ Marcus On 6/18/08, Marcelo Lotif <[EMAIL PROTECTED]> wrote: > Hi mdmota, > Configuring any tapestry library is very simple. In this case we don't > have a maven repository, so you have to do

Re: T 5.0 - format grid column

2008-06-18 Thread Marcelo Lotif
Hi mdmota, Configuring any tapestry library is very simple. In this case we don't have a maven repository, so you have to download it from the project site to your lib directory and add it to your classpath. That's all! And in your template: Don't forget to use it with T5.0.13 2008/6/18 mdmota

T 5.0 - Use zone

2008-06-18 Thread mdmota
How i do use zone for example: I have two radio buttons. When user change radio, i want alter zone () radio1 ()radio2 -- zone -- -- View this message in context: http://www.nabble.com/T-5.0---Use-zone-tp17986384p17986384.html Sent from the Ta

Re: T 5.0 - format grid column

2008-06-18 Thread mdmota
How i do for configure outputbr on my project? Where i have define this? I dont know configure... help me thanks Marcus-11 wrote: > > Hi Mdmota, > > http://code.google.com/p/myt5lib/ > > > Marcus > > -- View this message in context: http://www.nabble.com/T-5.0---format-grid-column-tp1

Re: DateField component: extra links are missing

2008-06-18 Thread David Oranchak
I knew I was missing something simple. Thanks so much! And my apologies for the duplicate question. -Dave On Jun 18, 2008, at 11:35 AM, Marcelo Lotif wrote: This question was already answered on this list. See http://www.nabble.com/-T5--component-is-not-Datefield-format-for-dd---mm-----

Re: DateField component: extra links are missing

2008-06-18 Thread Marcelo Lotif
This question was already answered on this list. See http://www.nabble.com/-T5--component-is-not-Datefield-format-for-dd---mm-----to16888482s302.html#a16888482 for extra features, you may see the DateTimeField from t5components http://code.google.com/p/tapestry5-components/ http://87.193.218.

Re: download firefox today

2008-06-18 Thread Daniel Jue
Note for us web developers, Firebug 1.2 requires Firefox 3. This doesn't seem to auto-update when you install FF3, so go here https://addons.mozilla.org/en-US/firefox/addon/1843 On Wed, Jun 18, 2008 at 8:43 AM, Filip S. Adamsen <[EMAIL PROTECTED]> wrote: > Suggestion: Use BCC next time so ever

Re: [T5] Change validation message key

2008-06-18 Thread Julien
Hi, Thanks for your reply, and sorry for my bad english (i'm french) ;) Using the app.properties file isn't really a good solution for me, since I replaced the default MessagesSource to used a database instead of propertie file. By the way, it helped me to find where was my mistake :) Thanks

Re: DateField component: extra links are missing

2008-06-18 Thread David Oranchak
Did anyone have any insight into my DateField issue below? I would really like to get those extra calendar links working in the calendar widget that renders as part of the DateField. Does anyone else get the extra links, or do your calendars look just like mine: http://oranchak.com/date-f

Re: T5 problem with multiple submit buttons

2008-06-18 Thread Massimo Lusetti
On Wed, Jun 18, 2008 at 3:16 PM, Janko Muzykant <[EMAIL PROTECTED]> wrote: > > hi, something is not working with handling events fired by different submit > buttons (or i have overlooked something...). that's my form: [..] > Could you suggest what is wrong here? Which versio are you using? --

Re: [T5] Change validation message key

2008-06-18 Thread Filip S. Adamsen
Hi, You can stick the message in app.properties and it will be used whenever a message isn't found in the component's messages. -Filip Julien skrev: Hi, I've created a custom validator, and i'd like to customize the message key, to create generic validation messages. For example, if I use

T5 problem with multiple submit buttons

2008-06-18 Thread Janko Muzykant
hi, something is not working with handling events fired by different submit buttons (or i have overlooked something...). that's my form: and the source: @OnEvent(component="view", value="selected") void onSelectedFromView() { action = FilterAction.VIEW; } @OnEvent(component="reset",

Re: Tapestry5 and new Window

2008-06-18 Thread Sven Homburg
thanx filip, I will not get rid of the feeling, that my written English is too bad ;-) 2008/6/18 Filip S. Adamsen <[EMAIL PROTECTED]>: > No, t5components won't work with Tapestry 5.0.11, only 5.0.13 and up. > > -Filip > > 滕训华 skrev: > > Do the t5Components 5.0.13 really can work with t5.0.11? >

[T5] Change validation message key

2008-06-18 Thread Julien
Hi, I've created a custom validator, and i'd like to customize the message key, to create generic validation messages. For example, if I use my "email" validator, tapestry will look for "-email-message" key, so I have to copy my message text in every page... arrg The Javadoc of AbstractValid

Re: download firefox today

2008-06-18 Thread Filip S. Adamsen
Suggestion: Use BCC next time so everyone doesn't get the e-mail addresses of all your contacts. :) (Posted to the list because people need to be aware of this.) -Filip Mohammad Shamsi skrev: Download Day is here! Set a Guinness World Record Enjoy a Better Web http://www.spreadfirefox.com/en-

Re: Tapestry5 and new Window

2008-06-18 Thread Filip S. Adamsen
No, t5components won't work with Tapestry 5.0.11, only 5.0.13 and up. -Filip 滕训华 skrev: > Do the t5Components 5.0.13 really can work with t5.0.11? > > But I found that org.apache.tapestry5. is used as the importing package > names of the t5components 5.0.13 source. tapestry 5.0.11 's pac

Re: Issue with T5.0.13 default page loading

2008-06-18 Thread Thiago H. de Paula Figueiredo
Em Wed, 18 Jun 2008 07:16:01 -0300, raveendra <[EMAIL PROTECTED]> escreveu: We have started our project development with T5.0.11.Due to some issues we are experimenting with T5.0.13 latest release we have replaced the jars.Previously when i type the url http://localhost:8000/mycont

Re: [ANN] JumpStart 3.7: for Tapestry 5.0.13

2008-06-18 Thread Kristian Marinkovic
hi geoff, i think there is a more elegant way to implement conversations in tapestry 5 because i can't contribute what i implemented so far i'll try to describe it :) every link is created by the LinkFactory service that accepts a list of LinkFactoryListener. for every Link creation the listen

download firefox today

2008-06-18 Thread Mohammad Shamsi
Download Day is here! Set a Guinness World Record Enjoy a Better Web http://www.spreadfirefox.com/en-US/worldrecord/ -- sincerely yours M. H. Shamsi

Re: [ANN] JumpStart 3.7: for Tapestry 5.0.13

2008-06-18 Thread Geoff Callender
Thanks, Max, for the acknowledgement. Oddly enough I've had no feedback from anyone on the conversations implementation I added to JumpStart in 3.6. Has anyone found it useful or perhaps extended on it? For those who didn't spot it - it's in the Wizards examples. Cheers, Geoff On 18/0

Issue with T5.0.13 default page loading

2008-06-18 Thread raveendra
Hi T5 We have started our project development with T5.0.11.Due to some issues we are experimenting with T5.0.13 latest release we have replaced the jars.Previously when i type the url http://localhost:8000/mycontext/ this was loading my Index.tml as default page but after replacing jars

re: Id not generated for actionlinks in grid ...

2008-06-18 Thread Kristian Marinkovic
hi Glenn, i took a look at the current implementation of the ActionLink and it seems that the "id" attribute is only rendered if it is really needed ( in case of zones, for JavaScript event listener). But if you call the getClientId() method of the ActionLink component manually the "id" attribut

Sven,please come in.

2008-06-18 Thread 滕训华
Hi,Sven, Today,I made some test and I found t5component 5.0.13 can not work with t5.0.11 and if I change t5component 5.0.11,all will be fine.

Re: T 5.0 - format grid column

2008-06-18 Thread Sven Homburg
t5components does the job well too http://87.193.218.134:8080/t5c-demo/simplecomponentspage 2008/6/18 mdmota <[EMAIL PROTECTED]>: > > I need format parameter for component grid with mask ###.###.###-##. > In the moment display values in format number ex: 06574185224, but i need > display 065.741.

Re: configuring a service for shutdown notification

2008-06-18 Thread Kristian Marinkovic
hi, in your case i'd do somehing like this: public DataService buildDataService(RegistryShutdownHub hub) { DataService x = new DataServiceImpl(); // if DataServiceImpl needs some DI too // inject ObjectLocator objectLocator // x = objectLocator.proxy(DataS