Re: T5: Persist or not? help me understand this

2007-10-31 Thread Marcelo C. de Freitas
Angelo, We had a situation using T4.1 where some non-persistent properties where reused in listeners after the page was rendered. It used to work relatively fine but as the page got more properties it begun to fail. Sometimes it got the right value, other times an old value (?!?!) and

Re: [4.1] EventListener within a component

2007-09-27 Thread Marcelo C. de Freitas
TextField getTextField() -Original Message- From: Marcelo C. de Freitas [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 26, 2007 8:55 PM To: Tapestry users Subject: [4.1] EventListener within a component Hello there, I have a issue that might be quite simple

[4.1] EventListener within a component

2007-09-26 Thread Marcelo C. de Freitas
Hello there, I have a issue that might be quite simple to solve but I'm completely lost. I have a component, let's call it !EditableCell, that has a TextInput whose id is dynamically created. How can I create an onchange EventListener for it in the component's class? -- Marcelo C.

Re: Submitting Forms with Parameters with Tapestry

2007-09-18 Thread Marcelo C. de Freitas
try using @Any instead of @Insert 2007/9/18, [EMAIL PROTECTED] [EMAIL PROTECTED]: Hi, I am new to Tapestry. I have a requirement that I submit a form with parameters (userid and password) to Oracle CoreId which is an authentication system. The submit needs to have userid and password in

Re: Who Use Tapestry

2007-09-05 Thread Marcelo C. de Freitas
isn't it time for us to create a Tapestry Brasil comunity? :D Em 05/09/07, Daniel Ruiz[EMAIL PROTECTED] escreveu: You got another one from Brazil :P Daniel Andrade Ruiz -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Carlos Delfino Carvalho

[T4]Injecting page into a Popup

2007-09-04 Thread Marcelo C. de Freitas
Hello Tapestry Gurus! Is there a simple way to inject a page into a popup window from an async listener in tapestry 4.1? -- Marcelo C. Freitas IM's: MSN: [EMAIL PROTECTED] ICQ: 24263609 Jabber: [EMAIL PROTECTED] GTalk: [EMAIL PROTECTED] Yahoo: baterausp

Re: [T4]Injecting page into a Popup

2007-09-04 Thread Marcelo C. de Freitas
the returned page in a popup window? Do you think there is a better solution for doing this? Also, where did contrib:PopupLink go in t4.1 (or it's just missing in the docs)? 2007/9/4, Marcelo C. de Freitas [EMAIL PROTECTED]: Hello Tapestry Gurus! Is there a simple way to inject a page

Re: [T4]Injecting page into a Popup

2007-09-04 Thread Marcelo C. de Freitas
? -Original Message- From: Marcelo C. de Freitas [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 04, 2007 10:56 AM To: Tapestry users Subject: Re: [T4]Injecting page into a Popup Let me elaborate more on my issue. I want to open a page in a popup window, but I need to set some

Re: T4.1 :: async form auto-submit

2007-08-24 Thread Marcelo C. de Freitas
Thanks Patrick, It didn't work as expected (well, at all), but I saw some javascript written in the HTML output. I'll just have to dig a little deeper; at least now I have the right directions. Regards. 2007/8/24, Patrick Klein [EMAIL PROTECTED]: Hello, How can I make a

T4.1 :: async form auto-submit

2007-08-23 Thread Marcelo C. de Freitas
Hey there, How can I make a PropertySelection auto-submit an async form when changed? I tried the ordinary onChange=this.form.submit() but it causes the entire page to reload and I just want parts of it to do so. Thanks. -- Marcelo C. Freitas

Re: [NOOB] Getting the Locale without injection

2007-08-16 Thread Marcelo C. de Freitas
that's not what you are looking for? Lutz On 8/16/07, Marcelo C. de Freitas [EMAIL PROTECTED] wrote: Hello there, I want to get the page locale (and the page messages) in a final object without having to set them manually (meaning I can't do the @InjectObject stuff

[NOOB] Getting the Locale without injection

2007-08-15 Thread Marcelo C. de Freitas
Hello there, I want to get the page locale (and the page messages) in a final object without having to set them manually (meaning I can't do the @InjectObject stuff). Is there a way I can do that? I've looked for it into the Hivemind docs but I couldn't find anything really useful.

Re: [T4.1]tabs supporting listeners

2007-08-08 Thread Marcelo C. de Freitas
/23, Marcelo C. de Freitas [EMAIL PROTECTED]: 2007/7/23, Shing Hing Man [EMAIL PROTECTED]: Have you tried Dojo TabContainer? The following has an example (in Tap 4.1.2). http://lombok.demon.co.uk/tapestry41Demo/app Shing -- Marcelo C. Freitas IM's: MSN: [EMAIL PROTECTED] ICQ

Re: [T4.1]tabs supporting listeners

2007-08-08 Thread Marcelo C. de Freitas
There is a simple solution for this. The Tab's divs are not visible at first, so the user can't see the iframes loading. Once the page is loaded, all divs are marked visible. 2007/8/8, Marcelo C. de Freitas [EMAIL PROTECTED]: it's almost working almost because the dojo's ContentPane

Re: T4 - Problem with latin characters

2007-07-23 Thread Marcelo C. de Freitas
something should have messed up your encoding settings. make sure you know what encoding you use in your pages and follow the instructions contained at: http://tapestry.apache.org/tapestry4.1/usersguide/configuration.html (look for encoding) good luck! 2007/7/23, Hernani Cerqueira [EMAIL

[T4.1]tabs supporting listeners

2007-07-23 Thread Marcelo C. de Freitas
Hello there, As this is my first question in this list (and my 2nd message) I`d like to say tanks for all tapestry developers and contributors for creating this amazing framework. I have a simple question (I looked for it in the list history but I couldn`t find any useful information).