T5.3.6 Fade-out/in a zone via Event/ActionLink by use of custom developed mixins‏

2012-12-06 Thread Software Engineer
Hallo guys, I am trying to fade-out/in a zone via link. So developed a mixins like the triggerFragement, which fades out a formfragment by checking a checkBox or radioButton. On runtime the mixins behaviour is not as expected. Clicking the link, it shortly fades out the zone and then it

Re: T5.3.6 AfterRenderTemplate getElement returns element of parent component

2012-12-06 Thread Lance Java
This is expected behavior. MarkupWriter.getElement() returns the current XML element on the stack that has not been closed (ie markupWriter.end() has not been called for the element). Since all TML templates are well formed XML and hence end() every element thus popping it off of the stack. What

Tapestry generated urls

2012-12-06 Thread Mark Fugmann
Greetings, We've ran into a problem with tapestry. One of our customers has a strong interest in SEO optimization. Currently our tapestry application (tapestry 5.1) is mounted to /shop/*. This application provides multiple eCommerce stores. Likewise the url for our german store is

Re: Tapestry generated urls

2012-12-06 Thread Lance Java
You could put all your pages under the shop package and tapestry will do what you want out of the box. eg com.mypackage.pages.shop.Page1 com.mypackage.pages.shop.Page2 If you want more control, you can decorate the ComponentEventLinkEncoder to do whatever you want.

Re: Tapestry generated urls

2012-12-06 Thread Thiago H de Paula Figueiredo
On Thu, 06 Dec 2012 07:14:34 -0200, Mark Fugmann m...@zyres.com wrote: Greetings, Hi! Most components build their URLs like /{contextpath}/{locale}/component... Is there any easy way to change that? I couldn't find anything. As you're still using T5.1, take a look at the URL rewriting

Re: date and time picker (resolved)

2012-12-06 Thread John
It wasn't clear in the tapx DateField docs, but adding the code below fixed the issue... configuration.add(JQuerySymbolConstants.JQUERY_ALIAS, $T); - Original Message - From: John To: Tapestry users Sent: Thursday, November 29, 2012 2:19 PM Subject: Re: date and time picker

Re: New to tapestry- please help

2012-12-06 Thread Michael Prescott
http://tapestry.apache.org/getting-started.html On 6 December 2012 09:04, Emmanuel Sowah eso...@gmail.com wrote: Hi guys, I'm new to tapestry. Could someone please point me to some simple to follow tutorials to get me up and running quickly? Thanks, Emmanuel

Re: New to tapestry- please help

2012-12-06 Thread Joachim Van der Auwera
Or get the book http://www.tapestry5book.com/ On 06-12-12 15:04, Emmanuel Sowah wrote: Hi guys, I'm new to tapestry. Could someone please point me to some simple to follow tutorials to get me up and running quickly? Thanks, Emmanuel

RE: New to tapestry- please help

2012-12-06 Thread Athneria, Mahendra
http://jumpstart.doublenegative.com.au/jumpstart/ Enjoy :-) -Original Message- From: Emmanuel Sowah [mailto:eso...@gmail.com] Sent: Thursday, December 06, 2012 7:34 PM To: users@tapestry.apache.org Subject: New to tapestry- please help Hi guys, I'm new to tapestry. Could someone

Tapestry-TestNG with selenium reusable helper methods.

2012-12-06 Thread George Christman
Hello, I'm very new to the automated testing world and have a couple questions. I'm wondering what the best practice for setting up reusable helper methods for testing. Should I be extending SeleniumTestCase with my own test methods, or should I be using a service? If the best way to do this is

Re: [5.3.6] Tapestry's minimal dependencies

2012-12-06 Thread Muhammad Gelbana
Thank you all for your help and suggestions :) On Thu, Dec 6, 2012 at 12:06 AM, Thiago H de Paula Figueiredo thiag...@gmail.com wrote: On Wed, 05 Dec 2012 19:01:11 -0200, Michael Prescott michael.r.presc...@gmail.com wrote: If you've used maven for that much, you're nearly there. All you

Re: Tapestry-TestNG with selenium reusable helper methods.

2012-12-06 Thread Alex Kotchnev
George, you should be extending SeleniumTestCase and just using plan object-oriented principles to manage your code (e.g you could have some utility clases with utility methods, possibly classes to encapsulate page specific contents, etc). Trying to put your functional test related code into

Re: Tapestry-TestNG with selenium reusable helper methods.

2012-12-06 Thread George Christman
Thanks Alex, I extended the Selenium class as suggested. -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-TestNG-with-selenium-reusable-helper-methods-tp5718524p5718528.html Sent from the Tapestry - User mailing list archive at Nabble.com.