RE: T5: Progress indicator and AJAX example?

2010-12-13 Thread Newham, Cameron
Thank you Thiago and Richard. -Original Message- From: Thiago H. de Paula Figueiredo [mailto:thiag...@gmail.com] Sent: 10 December 2010 11:14 To: Tapestry users Subject: Re: T5: Progress indicator and AJAX example? On Fri, 10 Dec 2010 09:04:49 -0200, Newham, Cameron wrote: > Hi, H

Re: Updating a CheckBox Value via Ajax Call

2010-12-13 Thread alanhay
Okay, no-one can help with this? That's why I will probably never use this framework again: the almost complete lack of any associated community or resources. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Updating-a-CheckBox-Value-via-Ajax-Call-tp3300400p3302969.html Se

Re: Updating a CheckBox Value via Ajax Call

2010-12-13 Thread Sven Homburg
Have a nice day with regards Sven Homburg Founder of the Chenille Kit Project http://chenillekit.codehaus.org 2010/12/13 alanhay : > > Okay, no-one can help with this? > > That's why I will probably never use this framework again: the almost > complete lack of any associated community or reso

Re: Updating a CheckBox Value via Ajax Call

2010-12-13 Thread Thiago H. de Paula Figueiredo
On Mon, 13 Dec 2010 09:18:45 -0200, alanhay wrote: Okay, no-one can help with this? This is a Tapestry 4 question. Almost everybody in this list is using Tapestry 5 already. That's why I will probably never use this framework again: the almost complete lack of any associated community or

Re: Updating a CheckBox Value via Ajax Call

2010-12-13 Thread alanhay
>This is a Tapestry 4 question. Almost everybody in this list is using Tapestry 5 already. So where are people using Tapestry 4 meant to seek help? >Lack of community? Just because your question, which is about an old version of Tapestry, wasn't answered? Well I'm sure I could find plen

Re: Updating a CheckBox Value via Ajax Call

2010-12-13 Thread Christophe Cordenier
Hi Alan ! Just an advice, when refering to T4 you should precise it in your post title. I am sure people in here have experience with T4 and if they can help, they'll do it. But be sure this kind of comments won't help you, this is unrespectful regarding all the efforts people are making to help

AjaxFormLoop in Tapestry 5.1.0.8-SNAPSHOT

2010-12-13 Thread Marcos Mainar
Hi there everyone, I am using Tapestry 5.1.0.5 and in one of my pages I have an AjaxFormLoop. In order to get rid of this error https://issues.apache.org/jira/browse/TAP5-733 , I updated to Tapestry 5.1.0.8-SNAPSHOT using this Maven repository http://repository.apache.org/snapshots/org/apache/tape

Re: AjaxFormLoop in Tapestry 5.1.0.8-SNAPSHOT

2010-12-13 Thread Christophe Cordenier
Hi Do you have any stacktrace or javascript error to share with us ? 2010/12/13 Marcos Mainar > Hi there everyone, > > I am using Tapestry 5.1.0.5 and in one of my pages I have an AjaxFormLoop. > In order to get rid of this error > https://issues.apache.org/jira/browse/TAP5-733 , I updated to T

Re: Updating a CheckBox Value via Ajax Call

2010-12-13 Thread Andreas Andreou
i'm not sure why the checkbox's checked state isn't updated after the ajax response (it might as well be a bug) but i'm pretty sure it'll work if you request an update of the dom node (or component) that surrounds the checkbox On Mon, Dec 13, 2010 at 14:49, Christophe Cordenier wrote: > Hi Alan !

Using custom annotations to perform dependency injection

2010-12-13 Thread tarruda
I have some JBoss seam services that get autowired to each other by the runtime using the @In annotation (http://docs.jboss.org/seam/1.1GA/api/org/jboss/seam/annotations/In.html) on its fields. I want to use Tapestry IOC container for performing unit tests on these components and for that I want

Referencing and displaying image asset from Webapp

2010-12-13 Thread Rich M
Hi, I'm having a hard time figuring out how to dynamically display some images I have in a sub-path of my webapp/ folder in my Tapestry application (1.5.0.5). I have db entities that store the names of files in a folder in webapp/layout/images/products/, and in a TML page using a grid, I wan

RE: Image file upload with Easy FCKEditor

2010-12-13 Thread 9902468
Yes, the php parts are totally replaced by Java, the Java implementation is http://java.fckeditor.net/ EasyFCKEditor is just a bridge between that and T5. It seems that the configuration that is provided by EasyFCK gets replaced with configuration which points to php implementation. Any chance t

Re: Using FCKEditor in Tapestry 5

2010-12-13 Thread 9902468
The editor part is easy. To enable file uploads seamlessly you need more than just a textfield and js init: you need java backend that communicates with the editor and properly set's up server configuration also (Where do you write images or flash or what not files, how you expose those to web etc

RE: Image file upload with Easy FCKEditor

2010-12-13 Thread 9902468
To make myself clearer :) FCK editor defaults to php backend if no configuration is supplied, but the php backend can be replaced with any language implementation as long as it just implements all needed aspects. With T5 pure Java implementation was the only way to go. - Ville -- View this mess