Re: Exception with T5 checkbox

2010-04-09 Thread jaques robert
I've already tried that but IE FF when meeting checked= or checked=checked are considerating that the checkbox are checked :( ... I'm using this html component because if I use the T5 component, I've got type coercion error (see my other posts inside this ML) So the idea is to use a IF to

Re: Exception with T5 checkbox

2010-04-09 Thread jaques robert
Another question is how to traduce : input type=checkbox name=selectedDocumentFields value=${documentField.documentFieldDN} checked=checked/ to tapestry component ? --- En date de : Ven 9.4.10, jaques robert mondes_englou...@yahoo.fr a écrit : De: jaques robert mondes_englou...@yahoo.fr

Re: Google Map Module and JavaScript-only PDF viewer component | GSOC2010

2010-04-09 Thread Charith Madusanka
Hi all , I need comments about my proposal. Charith On Thu, Apr 8, 2010 at 11:10 PM, Charith Madusanka charithc...@gmail.comwrote: *Proposal Title:* Google Map Module and JavaScript-only PDF viewer component *Student Name:* Charitha Madusanka Elvitigala * * *Student

using other namespaces

2010-04-09 Thread Kath Ede
how is it possible to integrate other namespaces than the tapestry-ns (t:) in tapestry5? we have this: html xmlns:t=http://tapestry.apache.org/schema/tapestry_5_1_0.xsd; xmlns:fb=http://www.facebook.com/2008/fbml; and in out page we want to include this: fb:login-button size=medium

Get final ouput of page rendering

2010-04-09 Thread iapilgrim
Hi all, I'd like to get the final output of Page ( to cache for example) I do this by using public static PageResponseRenderer decoratePageResponseRenderer( ... grabs // content here } But at this phase, I still miss some css and js files that included in each component in page. So my

Re: using other namespaces

2010-04-09 Thread Alejandro Scandroli
That's very much what I have, and it works for me. eg: Layout.tml: !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd; html xmlns:fb=http://www.facebook.com/2008/fbml;

Re: Tweaking an AjaxFormLoop

2010-04-09 Thread Peter Stavrinides
Nice post! and came at just the right time for me too... so thanks for the tips! +1 for feature addition, any Jira open? cheers, Peter - Original Message - From: Juan Isern juanis...@gmail.com To: users@tapestry.apache.org Sent: Friday, 9 April, 2010 08:09:40 GMT +02:00 Athens,

simple case for checkboxes T5

2010-04-09 Thread jaques robert
Hello, I've got some problemes with checkbox T5 for a while. I'd just like to display a page which could contains some checkbox, then submit this page in order to treat the various item corresponding to the ticked checkbox then redirect to the same page with the same checkbox ticked. It is

[Announce] RSS Atom with Tapestry 5 Rome integration

2010-04-09 Thread Robin Komiwes
Another contribution from Spread The Source this week. This one is about contributing Tapestry to allow action methods to return RSS and Atom feeds produced with Rome library. Checkout the complete announce at http://spreadthesource.com/2010/04/atom-and-rss-feeds-for-tapestry5/ and the source

[Announce] RSS Atom with Tapestry 5 Rome integration

2010-04-09 Thread Robin Komiwes
Another contribution from Spread The Source this week. This one is about contributing Tapestry to allow action methods to return RSS and Atom feeds produced with Rome library. Checkout the complete announce at http://spreadthesource.com/2010/04/atom-and-rss-feeds-for-tapestry5/ and the source

Re: Exception with T5 checkbox

2010-04-09 Thread Thiago H. de Paula Figueiredo
On Fri, 09 Apr 2010 04:34:45 -0300, jaques robert mondes_englou...@yahoo.fr wrote: I've already tried that but IE FF when meeting checked= or checked=checked are considerating that the checkbox are checked :( ... Please try again, but checked= means not checked as per the HTML standard.

Re: Coercion from String to ArrayList in Loop

2010-04-09 Thread Mite
Thanks, it works now. -- View this message in context: http://old.nabble.com/Coercion-from-String-to-ArrayList-in-Loop-tp28183967p28190833.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To

Re: Exception with T5 checkbox

2010-04-09 Thread Thiago H. de Paula Figueiredo
On Fri, 09 Apr 2010 04:57:13 -0300, jaques robert mondes_englou...@yahoo.fr wrote: Another question is how to traduce : input type=checkbox name=selectedDocumentFields value=${documentField.documentFieldDN} checked=checked/ input type=checkbox t:type=checkbox

Re: Tweaking an AjaxFormLoop

2010-04-09 Thread Robert Zeigler
Not that I'm aware of. Feel free to search jira and create one. :) Robert On Apr 9, 2010, at 4/95:39 AM , Peter Stavrinides wrote: Nice post! and came at just the right time for me too... so thanks for the tips! +1 for feature addition, any Jira open? cheers, Peter - Original Message

Need anchor/link to the fields in Tapestry5 ValidationTracker

2010-04-09 Thread JayeshU
I need to provide links to the individual fields in errors at the top. Tapestry4 had - IFieldTracking field = IValidationDelegate.getFieldTracking(); I couldn't find any equivalent in tapestry5. Tapestry 5 validator returns ListString getErrors(); But then there is no way to link these error

Re: Need anchor/link to the fields in Tapestry5 ValidationTracker

2010-04-09 Thread Thiago H. de Paula Figueiredo
On Fri, 09 Apr 2010 18:28:32 -0300, JayeshU jaye...@yahoo.com wrote: I couldn't find any equivalent in tapestry5. Tapestry 5 validator returns ListString getErrors(); But then there is no way to link these error messages to the actual fields which are in error. What about using String

Re: Need anchor/link to the fields in Tapestry5 ValidationTracker

2010-04-09 Thread JayeshU
Thanks Thiago for quick response. I will add to JIRA. You mentioned to use ValidationTracker.get(Field) method to match the error. That's looks like alternative I can use for now. But the followup question is, how do I get list of *all* the fields in that form, so I can loop through them ?

Obtaining the actual service instead of the interface/proxy

2010-04-09 Thread Martijn Kaag
hi For unittest purposes i'd like to be able to obtain the actual service instatiation instead of the proxy/interface. Any idea how to achieve this? Martijn - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For

Re: Obtaining the actual service instead of the interface/proxy

2010-04-09 Thread Thiago H. de Paula Figueiredo
On Fri, 09 Apr 2010 18:48:28 -0300, Martijn Kaag mart...@kaag.eu wrote: hi Hi! For unittest purposes i'd like to be able to obtain the actual service instatiation instead of the proxy/interface. Any idea how to achieve this? No. But your can instantiate the service implementation

Re: simple case for checkboxes T5

2010-04-09 Thread Josh Canfield
Hi. Here is a solution using a patch of the standard checkbox component that accepts any Object that can be ValueEncoder encoded. I created stand-in objects and make the assumption that documentFieldDN is unique and can be used in a set of all documentFieldDN. You could persist the set as query

Re: Need anchor/link to the fields in Tapestry5 ValidationTracker

2010-04-09 Thread Josh Canfield
I need to provide links to the individual fields in errors at the top. It seems like a case for ValidationDecorator. You can add the a name=fieldid/ tags for fields with errors. Take a look at the source for AutofocusValidationDecorator and this old email

RE: Zone updating / caching

2010-04-09 Thread Jim O'Callaghan
Thiago, That has done the trick. Thanks for the suggestion. Regards, Jim. -Original Message- From: Thiago H. de Paula Figueiredo [mailto:thiag...@gmail.com] Sent: 09 April 2010 02:15 To: Tapestry users Subject: Re: Zone updating / caching On Thu, 08 Apr 2010 21:19:45 -0300, Jim

Re: Google Map Module and JavaScript-only PDF viewer component | GSOC2010

2010-04-09 Thread Charith Madusanka
http://wiki.apache.org/general/CharithElvitigala

Re: Google Map Module and JavaScript-only PDF viewer component | GSOC2010

2010-04-09 Thread Charith Madusanka
Hi all, Project Reference Link... http://code.google.com/apis/ajax/ http://code.google.com/apis/maps/ http://wiki.apache.org/tapestry/FrontPage http://en.wikipedia.org/wiki/JavaScript charith

Re: Google Map Module and JavaScript-only PDF viewer component | GSOC2010

2010-04-09 Thread Alex Kotchnev
Charith, it seems to me that with the Javascript PDF viewer you might be biting more than you can chew. PDF is not a very pleasant format to deal with, and in order to view it only in Javascript/HTML you'll need to convert the PDF to images. I few years ago I was doing something similar, and it