Re: tapestry-resteasy: How to Get IP Address on Resource Class

2011-12-27 Thread Bård Magnus Kvalheim
Hi Yohan, Havent tried but you should be able to get it from @Context HttpServletRequest request http://docs.jboss.org/resteasy/docs/2.3.0.GA/userguide/html_single/index.html#_Context Think context injection works on resource method as well as members. Then use request.getRemoteAddr() Guess you

Re: ChenilleKit version 1.3.3-SNAPSHOT released

2011-12-27 Thread Todd Orr
Great job! Been looking forward to this for a while. However, I've added the dependency and now app won't start: 14:51:34.928 [main] INFO RegistryBuilder RegistryBuilder - Adding module definition for class org.chenillekit.tapestry.core.ChenilleKitCoreModule 2011-12-27 14:51:34.932:WARN::failed

Re: Got5-JQuery - Tapestry.Zone_Updated_Event

2011-12-27 Thread George Christman
Hi Emmanuel, I'm using 3.0.0. Thanks -- View this message in context: http://tapestry.1045711.n5.nabble.com/Got5-JQuery-Tapestry-Zone-Updated-Event-tp5103466p5103493.html Sent from the Tapestry - User mailing list archive at Nabble.com. ---

Re: Got5-JQuery - Tapestry.Zone_Updated_Event

2011-12-27 Thread Emmanuel DEMEY
Hi Wich Tapestry5-jQuery version do you use ? Manu 2011/12/27 George Christman > I've just recently migrated our project to Got5-JQuery. With prototype, I > had > a script in afterRender to call a js method once my zone completed it's > refresh. With Got5-JQuery, this function no longer works.

Got5-JQuery - Tapestry.Zone_Updated_Event

2011-12-27 Thread George Christman
I've just recently migrated our project to Got5-JQuery. With prototype, I had a script in afterRender to call a js method once my zone completed it's refresh. With Got5-JQuery, this function no longer works. I'm wondering if anybody knows how to get this to work with Got5-JQuery? old script

Re: T5.3 trigger a Cancel event in Form

2011-12-27 Thread angelochen
right, that's the one, I think the event should be EventConstants.CANCEL. Thanks. -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-3-trigger-a-Cancel-event-in-Form-tp5102632p5103197.html Sent from the Tapestry - User mailing list archive at Nabble.com. --

Re: T5.3.1: replacing css for t:errors

2011-12-27 Thread David Canteros
yes, i have the css code in an external file too, and it works fine. I had the same problem that you and got the patch from the following mails: http://tapestry.1045711.n5.nabble.com/T5-3-rc3-ordering-of-css-td4969412.html (see the last one) Regards -

Re: T5.3 trigger a Cancel event in Form

2011-12-27 Thread kleanthis
you need to add mode="CANCEL" in the submit code in tml, and thena annotate the handler method with @OnEvent(value = EventConstants.PREPARE, component = "formName") Don't forget to inject the Form in the java file. - Do not confuse motion for action. -- View this message in context: http:

Re: T5.3.1: replacing css for t:errors

2011-12-27 Thread angelochen
it is this one: HTML>BODY DIV.t-error LI { margin-left: 20px; } but putting it in tml file does not work, put it in an external css file works. -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-3-1-replacing-css-for-t-errors-tp5102590p5103128.html Sent from the Tapestr

Re: Autocomplete question

2011-12-27 Thread Joakim Olsson
Thanks for the plug. :-) /Joakim On Tue, Dec 27, 2011 at 12:59 PM, David Canteros wrote: > Maybe "tag-select"? Take a look to > https://github.com/argoyle/tapestry-tagselect > > > -- > David Germán Canteros > > > 2011/12/27 bigcach

Re: Autocomplete question

2011-12-27 Thread David Canteros
Maybe "tag-select"? Take a look to https://github.com/argoyle/tapestry-tagselect -- David Germán Canteros 2011/12/27 bigcache1 > Good day to everyone! > I have textfield where I need multiple input of people credentials, like: >

Re: T5.3.1: replacing css for t:errors

2011-12-27 Thread David Canteros
I can do it adding the word BODY before DIV in each class of the alert's css. For instance, the file t-alerts.css says "DIV.t-alert-container" then and I write in my css "BODY DIV.t-alert-container". -- David Germán Canteros 2011/

Re: T5.3 trigger a Cancel event in Form

2011-12-27 Thread angelochen
Hi Paulo, Thanks for the code, I think that works in other versions as well, I noticed that 5.3 has this Cancel event and I'd like to know how different it is. Angelo -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-3-trigger-a-Cancel-event-in-Form-tp5102632p5102931.htm

Re: ChenilleKit version 1.3.3-SNAPSHOT released

2011-12-27 Thread Massimo Lusetti
On Mon, Dec 26, 2011 at 7:22 AM, Geoff Callender wrote: > It works fine with JumpStart using T5.3.1. > > Many thanks, The release 1.3.3 is behind the door. Cheers -- Massimo http://meridio.blogspot.com - To unsubscribe, e-mai

Re: T5.3 trigger a Cancel event in Form

2011-12-27 Thread Paulo Ricardo Ribeiro
Hello angelochen I have something like this: and on the Java side: private boolean cancelar; void onSelectedFromCancelar() { cancelar = true; } public Object onSubmit() { if (cancelar) { //CANCEL LOGIC } else { //"Normal" LOGIC

Internationalization - How to remove locale prefix in the URL

2011-12-27 Thread Javix
Could anybody explaine how to remove the generated by Tapestry locale prefix in the url or just avoid id? When switching the locale like this(took from the very known exmaple): public class Layout { @Inject private PersistentLocale persistentLocale; @Inject private Locale currentLocal

tapestry-resteasy: How to Get IP Address on Resource Class

2011-12-27 Thread Yohan Yudanara
Hi, I want to ask a question about tapestry-resteasy library from tynamo ( www.tynamo.org) Is it possible to get client IP Address on tapestry-resteasy resource class? I need the IP address of incoming request for logging purpose. Thanks in advance Best regards, Yohan Yudanara

Autocomplete question

2011-12-27 Thread bigcache1
Good day to everyone! I have textfield where I need multiple input of people credentials, like: Aragorn, Legolas, Sauron Question is: Is there any functionality in autocomplete to provide completions after each comma, and not to erase data, that was already written? -- View this message in context