RE: Generate link to Tapestry page from another program

2015-05-12 Thread Poder, Jacob
to Tapestry page from another program On Wed, 06 May 2015 12:00:07 -0300, Poder, Jacob jacob.po...@thermofisher.com wrote: I'll consider overriding the URLEncoder service, but I'm not too keen on that as it will require me to check for changes in the std implementation on each Tapestry upgrade

SV: Generate link to Tapestry page from another program

2015-05-09 Thread Poder, Jacob
? Fra: Chris Poulsen [mailingl...@nesluop.dk] Sendt: 9. maj 2015 19:30 Til: Tapestry users Emne: Re: Generate link to Tapestry page from another program Something like this answer: http://stackoverflow.com/a/15849972 On Sat, May 9, 2015 at 5:38 PM, Poder, Jacob

SV: Generate link to Tapestry page from another program

2015-05-09 Thread Poder, Jacob
that you could pass the list of ids as a single multivalue parameter and then use request.getParameterValues to retrieve the values for the parameter (so url encoding of , would not be an issue) On Wed, May 6, 2015 at 5:00 PM, Poder, Jacob jacob.po...@thermofisher.com wrote: I'll consider

Generate link to Tapestry page from another program

2015-05-06 Thread Poder, Jacob
Hi all, I want to generate links to a Tapestry page from another (non Tapestry) Java program and would like to know if there is any preferred way of doing that? Can I somehow use Tapestry's URI generation code directly? The page I need to link to has two arguments, say a type and a list of ids:

RE: Generate link to Tapestry page from another program

2015-05-06 Thread Poder, Jacob
another program you can also work with the request parameters in the old fashioned way by injecting the request On Wed, May 6, 2015 at 2:45 PM, Poder, Jacob jacob.po...@thermofisher.com wrote: Hi all, I want to generate links to a Tapestry page from another (non Tapestry) Java program

RE: Generate link to Tapestry page from another program

2015-05-06 Thread Poder, Jacob
- From: Thiago H de Paula Figueiredo [mailto:thiag...@gmail.com] Sent: 6. maj 2015 16:39 To: Tapestry users Subject: Re: Generate link to Tapestry page from another program On Wed, 06 May 2015 10:24:01 -0300, Poder, Jacob jacob.po...@thermofisher.com wrote: Tapestry will throw an exception

RE: Two fundamental questions.

2015-01-22 Thread Poder, Jacob
Hi Robert, Sorry for the off-topic but I couldn't help notice your signature... easier to read when translated to amino acids in reading frame 1 though :-) Good one... Jacob Poder -Original Message- From: Robert Zeigler [mailto:robert.zeig...@roxanemy.com] Sent: 22. januar 2015 00:14

RE: How Tapestry handles null values in template

2013-04-12 Thread Poder, Jacob
You are very welcome. See here for documentation and examples of using tapestry expression language: http://tapestry.apache.org/property-expressions.html Best, Jacob -Original Message- From: David Siedlecki [mailto:david.siedle...@beatsystems.com] Sent: 12. april 2013 13:28 To:

RE: Change textfield focus on zone update

2012-10-04 Thread Poder, Jacob
, transactionText.getClientId()); } Best regards, Jacob Poder -Original Message- From: Thomas Jensen [mailto:tapes...@tj-development.dk] Sent: Wednesday, October 03, 2012 10:14 PM To: Tapestry users Subject: Re: Change textfield focus on zone update 2012/10/3 Poder, Jacob jacob.po...@thermofisher.com

RE: Change textfield focus on zone update

2012-10-03 Thread Poder, Jacob
There is even a specific method for the purpose, see JavaScriptSupport.autofocus I have used that successfully in a similar case. Best regards, Jacob Poder -Original Message- From: Lance Java [mailto:lance.j...@googlemail.com] Sent: Wednesday, October 03, 2012 9:50 AM To:

RE: How to resolve: getWriter() has already been called for this response

2012-06-28 Thread Poder, Jacob
Try this: Object onActivate() { String domain = request.getHeader(Host); if(null != domain) { if(!domain.contains(webapp.m.sample)) { try { return new URL(http://webapp.m.sample/Registration/portfolio;);

RE: Grid with split rows

2012-06-14 Thread Poder, Jacob
Continuing the pragmatic approach but still requiring valid HTML... // Component Java (no tml) // Ends current row and starts a new one @SupportsInformalParameters public class AddGridRow { void beginRender(MarkupWriter writer) { writer.writeRaw(/td/trtrtd colspan=\100\);

RE: [5.3] JSONArray Error while submitting forms

2012-06-14 Thread Poder, Jacob
Hi Bob, Thanks for commenting. I already tried this, please see earlier correspondence. (http://tapestry.1045711.n5.nabble.com/5-3-JSONArray-Error-while-submitting-forms-td5713753.html) Best regards, Jacob -Original Message- From: Bob Harner [mailto:bobhar...@gmail.com] Sent:

RE: [5.3] JSONArray Error while submitting forms

2012-06-14 Thread Poder, Jacob
This is crazy ! Please send me your eclipse project with tha sample page causing the error. On Wed, Jun 13, 2012 at 3:39 PM, Poder, Jacob jacob.po...@thermofisher.comwrote: Okay, I created an eclipse maven project and added my simple test page to that. The problem still occurs! Testing with various

SV: [5.3] JSONArray Error while submitting forms

2012-06-14 Thread Poder, Jacob
On the contrary, you helped med show that it is a real problem, now maybe other people will recognize this issue as well! Thank you!!! Best regards, Jacob Fra: Muhammad Gelbana [m.gelb...@gmail.com] Sendt: 14. juni 2012 19:33 Til: Poder, Jacob Emne: Re: [5.3

RE: [5.3] JSONArray Error while submitting forms

2012-06-13 Thread Poder, Jacob
description to reproduce and see if it could be a Tapestry bug??? Best regards, Jacob From: Muhammad Gelbana [mailto:m.gelb...@gmail.com] Sent: Tuesday, June 12, 2012 5:06 PM To: Poder, Jacob Subject: Re: [5.3] JSONArray Error while submitting forms The only I did beat this was to use maven

RE: [5.3] JSONArray Error while submitting forms

2012-06-12 Thread Poder, Jacob
your app configuration. Things like: *SymbolConstants.MINIFICATION_ENABLED* On Mon, Jun 11, 2012 at 9:43 AM, Poder, Jacob jacob.po...@thermofisher.comwrote: Hi, I'm having the problem described here: https://issues.apache.org/jira/browse/TAP5-1777 The issue has been closed as not a problem

RE: [5.3] JSONArray Error while submitting forms

2012-06-12 Thread Poder, Jacob
Aha, the error ONLY occurs when the form is submitted by pressing return! So, 3 conditions to make this happen: 1) IE8/9 browser 2) Submit form using return button 3) A validator (e.g. required/min/max) must have failed immediately before Best regards, Jacob T5.3.3

[5.3] JSONArray Error while submitting forms

2012-06-11 Thread Poder, Jacob
Hi, I'm having the problem described here: https://issues.apache.org/jira/browse/TAP5-1777 The issue has been closed as not a problem, but I'm still getting this error even though I cleared browser cache as suggested. The error happens in IE8 and IE9 but not in Firefox or Chrome. For me It's

RE: @XHR : isXHR shortcut

2012-06-04 Thread Poder, Jacob
Hmm, apparently the code was filtered out but is included here: http://tapestry.1045711.n5.nabble.com/XHR-isXHR-shortcut-tp3353416p5713607.html I'll try posting it again: // Code begin public class ZoneWorker implements ComponentClassTransformWorker2 { protected Request request;

RE: Cannot get component library to load

2012-06-01 Thread Poder, Jacob
Eclipse docs for the Add directory entries option says adds an entry for each directory to the JAR file, even if the directory does only contain subdirectories. In my case, the component rendered in java code (beginRender/afterRender) e.g. src/main/java/.../components/Render.java did not have

RE: Cannot get component library to load

2012-05-31 Thread Poder, Jacob
Hi, Not sure if this will help you, but I had the same problem when exporting my jar from eclipse. Checking the Add directory entries option in the JAR export solved it for me! Best regards, Jacob - To unsubscribe, e-mail:

RE: Server side or timed update of a zone

2012-05-24 Thread Poder, Jacob
Hi, Have a look at the ZoneRefresh mixin, perhaps that's what you are looking for? Cheers, Jacob -Original Message- From: Fuhrmann, Hauke [mailto:hauke.fuhrm...@funkwerk-it.com] Sent: Thursday, May 24, 2012 11:45 AM To: users@tapestry.apache.org Subject: Server side or timed update of

Alerts component and Duration.SINGLE

2012-04-24 Thread Poder, Jacob
Hello, I'm using the AlertManager service along with the Alerts component to display messages. For non ajax requests it behaves like I prefer, but for ajax requests messages are appended to the alerts list and old ones are only cleared when the whole page is refreshed. This is of course