Re: tapestry5-highcharts available

2012-08-06 Thread Emmanuel DEMEY
The dependency should be available here : http://nexus.pullrequest.org/content/repositories/releases/org/got5/tapestry5-highcharts/ 2012/8/4 Emmanuel DEMEY > You are right. The repository looks like unavailable. I will ask the > administrator on monday, when I will be back at work. > Sorry agai

Re: tapestry5 double form submit handled?

2012-08-06 Thread Sigbjørn Tvedt
A double click on the submit button is not handled. If you want to handle this, you may use this solution http://jumpstart.doublenegative.com.au/jumpstart/examples/javascript/creatingmixins1 Regards Sigbjørn Tvedt On 6 August 2012 06:36, Angelo C. wrote: > Hi, > > Does t5 handle double submit

tapestry 5 FormFragment validation with IE8/IE9

2012-08-06 Thread LanceWhite
There seems to be a problem with FormFragment validation and IE8/IE9, in that validation in the fragment is always being performed, whether or not the fragment is visible. Is this a known problem that will be fixed, or can anyone offer a solution to get round it? I'm using Tapestry 5.3.3. Cheer

Re: Lightweight TapestryTools update site

2012-08-06 Thread Gavin Lei
Hi all, In TapestryTools' components auto-complete feature, by default only components defined in these two packages are in the list: 1.org.apache.tapestry5.corelib.components (Tapestry 5's build-in components) 2.app-package.components, whereby app-package is the applications root package defined

Re: image link problem with different domains linking to deployment domain

2012-08-06 Thread Thiago H de Paula Figueiredo
On Sat, 04 Aug 2012 16:30:39 -0300, sommeralex wrote: i tried background:#FF url("${context:img/layout/bg.jpg}") repeat-x; Tapestry only expands ${} referenceschange in .tml files. -- Thiago H. de Paula Figueiredo - T

Re: image link problem with different domains linking to deployment domain

2012-08-06 Thread sommeralex
thank you! the relative path notation could solve my problem. img/blabla/ was not working anymore, but ./img/blabla did the job in my CSS. another learning is to disable browser cache if i am testing my website :-) 2012/8/6 Thiago H de Paula Figueiredo [via Tapestry] < ml-node+s1045711n571508...@

Re: Lightweight TapestryTools update site

2012-08-06 Thread antalk
Hi, I just installed the plugin in eclipse 'juno'. It works fine but it can not match named translated TML pages to the correct class. What i mean: I have several template pages which end with a locale identifier, eg: About_nl.tml About_en.tml About_de.tml The plugin should be able to link th

Re: How to override a component message

2012-08-06 Thread Matías Blasi
Hi all, I'd like to know if my question is clear, because I can't resolve it yet, and I think that I should be missing something obvious... A component has a , the same component defines userName-label in its component.properties, and I don't know how to override that property... I tried in every

Re: tapestry5 double form submit handled?

2012-08-06 Thread Lenny Primak
Also, the FlowLogix library has a JavaScript solution for this, to be used with the JumpStart solution: http://code.google.com/p/flowlogix/ On Aug 6, 2012, at 4:09 AM, Sigbjørn Tvedt wrote: > A double click on the submit button is not handled. If you want to handle > this, you may use this sol

Re: tapestry5-highcharts available

2012-08-06 Thread George Christman
Looks like it's up again. Thanks Manu. -- View this message in context: http://tapestry.1045711.n5.nabble.com/tapestry5-highcharts-available-tp5606181p5715094.html Sent from the Tapestry - User mailing list archive at Nabble.com. ---

Re: How to override a component message

2012-08-06 Thread Howard Lewis Ship
The only way to override a message key in a component's message catalog is to subclass the component, and provide a new message catalog (that implicitly extends the super-class message catalog). On Mon, Aug 6, 2012 at 8:21 AM, Matías Blasi wrote: > Hi all, > > I'd like to know if my question is c

Re: Ajax errors handling

2012-08-06 Thread Matías Blasi
Thank you very much Lenny! I'll research on the code. As far as I understood, that library does one of my two requirements (the ajax error redirection handling) I would like, to integrate the ajax-errors produced, with my client error messaging system (alerts/jgrowl) Is there any place to attach

Re: Ajax errors handling

2012-08-06 Thread Lenny Primak
I didn't do any work in that regard. Sorry. On Aug 6, 2012, at 1:44 PM, Matías Blasi wrote: > Thank you very much Lenny! > > I'll research on the code. > > As far as I understood, that library does one of my two requirements (the > ajax error redirection handling) > I would like, to integra

+ zone

2012-08-06 Thread Dimitris Zenios
Is there a way to have a layout component and all its body would be rendered using zone?Just like google plus does when you change between pages. - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For additional comma

Re: How to override a component message

2012-08-06 Thread Matías Blasi
Thank you Howard! I got it working now! Regards, Matias. On Mon, Aug 6, 2012 at 12:21 PM, Matías Blasi wrote: > Hi all, > > I'd like to know if my question is clear, because I can't resolve it yet, > and I think that I should be missing something obvious... > > A component has a , the same com

Intercept component event actions?

2012-08-06 Thread Dmitry Gusev
Hi, is it possible to intercept component event actions? I have one page with multiple zones. Blocks from another page rendered on these zones using ajax. Those blocks have components with event action handlers. Every action handler have context parameter, and I would like to check these params b

Re: Intercept component event actions?

2012-08-06 Thread Alex Kotchnev
Dmitry, there is the import org.apache.tapestry5.services.ComponentRequestFilter, which gets called on page and component events. For example, Tynamo's tapestry-security module (e.g. org.tynamo.security.SecurityComponentRequestFilter) uses these to check if the user has the correct permissions.

Re: + zone

2012-08-06 Thread Thiago H de Paula Figueiredo
On Mon, 06 Aug 2012 16:03:44 -0300, Dimitris Zenios wrote: Is there a way to have a layout component and all its body would be rendered using zone? Yes, why not? -- Thiago H. de Paula Figueiredo - To unsubscribe, e-mail:

Re: + zone

2012-08-06 Thread Dimitris Zenios
Any example or a hint please? On Tue, Aug 7, 2012 at 12:13 AM, Thiago H de Paula Figueiredo wrote: > On Mon, 06 Aug 2012 16:03:44 -0300, Dimitris Zenios > wrote: > >> Is there a way to have a layout component and all its body would be >> rendered using zone? > > > Yes, why not? > > -- > Thiago H

Re: how to put pages / components java code and tml files in same directory?

2012-08-06 Thread Thiago H de Paula Figueiredo
On Mon, 06 Aug 2012 20:47:13 -0300, PS M. wrote: Hi there -- Hi! I thought there was a way to put the java files and the related tml files in the same directory. I would like to put the MyPage.tml file in the same src/main/java/org/example/pages directory that the MyPage.java file is i

Re: + zone

2012-08-06 Thread Thiago H de Paula Figueiredo
On Mon, 06 Aug 2012 19:36:17 -0300, Dimitris Zenios wrote: Any example or a hint please? Layout.tml: On Tue, Aug 7, 2012 at 12:13 AM, Thiago H de Paula Figueiredo wrote: On Mon, 06 Aug 2012 16:03:44 -0300, Dimitris Zenios wrote: Is there a way to have a layout component

Re: how to put pages / components java code and tml files in same directory?

2012-08-06 Thread Patrick Moore
Thanks, for the pointer. src/main/java *.java src/main/resources in the pom.xml solves the issue. On Mon, Aug 6, 2012 at 6:43 PM, Thiago H de Paula Figueiredo < thiag...@gmail.com> wrote: > On M

Re: how to put pages / components java code and tml files in same directory?

2012-08-06 Thread Lance Java
Although this is possible with maven, you are going against mavens conventions src/main/java is for java files src/main/resources is for resources In my experience it's best not to fight against maven and instead follow it's sensible conventions. On Tuesday, 7 August 2012, Patrick Moore wrote:

restrict button refresh When i click

2012-08-06 Thread Anbazhagan
Hi I using loop component to display the list of items. Each items have separate button. I have designed when i click the button the title of items will display on the same page. Here when i click that button the page was refreshed. so i cannot maintain the current index. Hence can't display the