Re: T5 With myibatis

2011-07-01 Thread dick_hu
Thiago H. de Paula Figueiredo wrote: > > Tapestry doesn't provide an out-of-the-box integration, but you don't need > that to use it with MyIbatis. > OK,I know. Thanks -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-With-myibatis-tp4541264p4543882.html Sent from the

Re: Change how beaneditor structures it's fields

2011-07-01 Thread Muhammad Gelbana
> > Again, you can't handle render events from other components. > I was just trying to explain the solution I tried to implement. I'll look into mixins then. Thank you Robert and Thiago :) On Fri, Jul 1, 2011 at 11:27 PM, Thiago H. de Paula Figueiredo < thiag...@gmail.com> wrote: > On Fri, 01 J

Re: Palette inside a beaneditor

2011-07-01 Thread Mark
> Please use the add parameter which adds fields not present in the default > generated BeanModel. >   Ah ok. I see. I knew to add this when I was trying to show something that wasn't present in the object, but I didn't realize I needed to do it for things that were present, but the beaneditor di

Re: Palette inside a beaneditor

2011-07-01 Thread dragan.sahpas...@gmail.com
Hi, On Fri, Jul 1, 2011 at 9:14 PM, Mark wrote: > I have a beaneditor inside an Ajax loop that is inside a form. One of > the attributes needs to be a palette. When I try to simply add it as > a parameter, it doesn't show up. It looks like it would work if I > skip using the beaneditor and ju

Re: Change how beaneditor structures it's fields

2011-07-01 Thread Thiago H. de Paula Figueiredo
On Fri, 01 Jul 2011 18:03:25 -0300, Muhammad Gelbana wrote: The thing is that beaneditor encapsulates each rendered field in a div tag and I need to put more than one field in a single div tag so I need to handle the BeginRender event for the beaneditor. Again, you can't handle render e

Re: Change how beaneditor structures it's fields

2011-07-01 Thread Thiago H. de Paula Figueiredo
On Fri, 01 Jul 2011 17:12:52 -0300, Muhammad Gelbana wrote: Failure parsing template classpath:com/skycomm/tclagent/pages/ConfigureTclTest.tml: Block parameters are only allowed directly within component elements. The message is quite descriptive . . . So I still can't get to make this

Re: Change how beaneditor structures it's fields

2011-07-01 Thread Muhammad Gelbana
Sorry for the late reply but sadly I only get to work on tapestry only on my weekend :( Thanks Robert for your help but this won't work as the following exception is being thrown: Failure parsing template > classpath:com/skycomm/tclagent/pages/ConfigureTclTest.tml: Block parameters > are only all

Re: Special Character in attribute.

2011-07-01 Thread Thiago H. de Paula Figueiredo
On Fri, 01 Jul 2011 16:44:15 -0300, Nillehammer wrote: Hi Juan, Should I have to treat the % as a special character? I don't think the "%" is the problem. I think that Tapestry confused by the String starting with "width:" Tapestry uses the first part of a parameter before the ":" as a b

Re: Special Character in attribute.

2011-07-01 Thread Nillehammer
Hi Juan, Should I have to treat the % as a special character? I don't think the "%" is the problem. I think that Tapestry confused by the String starting with "width:" Tapestry uses the first part of a parameter before the ":" as a binding prefix. And width is not a valid binding prefix. As a

Palette inside a beaneditor

2011-07-01 Thread Mark
I have a beaneditor inside an Ajax loop that is inside a form. One of the attributes needs to be a palette. When I try to simply add it as a parameter, it doesn't show up. It looks like it would work if I skip using the beaneditor and just add all the fields manually. Is there a reason this does

Special Character in attribute.

2011-07-01 Thread Juan Alba
Hi I am working with a mixin that uses modals and I was trying to send % for the width and height of the modal. This is the example: Link When I try to access to the page that contains the actionLink, this is the error shown: org.apache.tapestry5.internal.services.Rend

Re: Client id of a zone inside another zone

2011-07-01 Thread Taha Hafeez
Hi Just set javascript id on the inner zone. link1 link2 ${count} This keeps the javascript id for the zone constant across zone updates regards Taha 2011/7/1 Clément Uster > Hi all, > > I'm encountering a problem with zones, I have a specific case where a zone > is embedded in an

Client id of a zone inside another zone

2011-07-01 Thread Clément Uster
Hi all, I'm encountering a problem with zones, I have a specific case where a zone is embedded in another zone. I have two actionlinks, the first updates the first zone and the second one updates the second zone. I think the best is to read the code :) tml link1 link2 ${count} jav

Re: Simple question

2011-07-01 Thread Tony Nelson
On Jul 1, 2011, at 12:32 PM, Howard Lewis Ship wrote: > On Fri, Jul 1, 2011 at 4:37 AM, Thiago H. de Paula Figueiredo > wrote: >> On Fri, 01 Jul 2011 07:31:18 -0300, wrote: >> >>> Hello everyone! >> >> Hi! >> >>> Is it possible to nest the output of variables, i.e.: something like: >>> > >

Re: Simple question

2011-07-01 Thread Howard Lewis Ship
On Fri, Jul 1, 2011 at 4:37 AM, Thiago H. de Paula Figueiredo wrote: > On Fri, 01 Jul 2011 07:31:18 -0300, wrote: > >> Hello everyone! > > Hi! > >> Is it possible to nest the output of variables, i.e.: something like: >> No this is not supported, but you could inject the AssetSource service int

Re: Tapestry 5 in Action 50% Off

2011-07-01 Thread Yohan Yudanara
Manning has replied my email. I can buy the e-book version, but not the print edition. So, I've bought the ebook version, select 'whatever' country in the order form and entered my real country in "notes" field. I've downloaded the ebook and will start reading now :) On Fri, Jul 1, 2011 at 9:21

Re: Tapestry 5 in Action 50% Off

2011-07-01 Thread laloluke
And what about the e-book? Although I think you'll want the print edition -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-5-in-Action-50-Off-tp4541119p4542291.html Sent from the Tapestry - User mailing list archive at Nabble.com. -

Re: IOC Classes in a package

2011-07-01 Thread dick_hu
Taha Hafeez wrote: > > Here is an example of ClassNameLocator to create entity daos for entities > in a given package > > http://tawus.wordpress.com/2011/04/28/tapestry-magic-9-integrating-with-hibernate-and-multiple-database-support/ > > Regards > Taha > > On Jul 1, 2011, at 6:55 PM, "Thiago

Re: IOC Classes in a package

2011-07-01 Thread Taha Tapestry
Here is an example of ClassNameLocator to create entity daos for entities in a given package http://tawus.wordpress.com/2011/04/28/tapestry-magic-9-integrating-with-hibernate-and-multiple-database-support/ Regards Taha On Jul 1, 2011, at 6:55 PM, "Thiago H. de Paula Figueiredo" wrote: > On

Re: [ANN] Tapestry5 Training materials available

2011-07-01 Thread dick_hu
Great~ thank you -- View this message in context: http://tapestry.1045711.n5.nabble.com/ANN-Tapestry5-Training-materials-available-tp4541557p4542179.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To uns

Re: T5 With myibatis

2011-07-01 Thread Thiago H. de Paula Figueiredo
On Fri, 01 Jul 2011 10:12:24 -0300, dick_hu wrote: may be I have not express clearly, I mean is T5 integrate the myibatis? Tapestry doesn't provide an out-of-the-box integration, but you don't need that to use it with MyIbatis. -- Thiago H. de Paula Figueiredo Independent Java, Apache Tap

Re: IOC Classes in a package

2011-07-01 Thread Thiago H. de Paula Figueiredo
On Fri, 01 Jul 2011 10:08:06 -0300, dick_hu wrote: Yeah,you know me. you mean there is no way to add service/beans by a package name? Not out-of-the-box. because I have little knowledge about T5 can you give me any example about "ClassNameLocatorImpl" Take a look at how it's used in the

Re: T5 With myibatis

2011-07-01 Thread dick_hu
may be I have not express clearly, I mean is T5 integrate the myibatis? If yes,that must a sample way to use the myibatis -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-With-myibatis-tp4541264p4542099.html Sent from the Tapestry - User mailing list archive at Nabble.com

Re: IOC Classes in a package

2011-07-01 Thread dick_hu
Yeah,you know me. you mean there is no way to add service/beans by a package name? because I have little knowledge about T5 can you give me any example about "ClassNameLocatorImpl" you can send to my email dickan...@gmail.com thank you! -- View this message in context: http://tapestry.1045711.n5.

Re: [ANN] Tapestry5 Training materials available

2011-07-01 Thread Muhammad Gelbana
This is just...GREAT ! Thanks a lot :) 2011/7/1 Thiago H. de Paula Figueiredo > On Fri, 01 Jul 2011 06:35:22 -0300, Emmanuel DEMEY < > emmanuel.de...@atosorigin.com**> wrote: > > Hi all, >> > > Hi! > > > The WebPlatform Team (aka Got5), from Atos Worldline, is very pleased to >> share their T

Re: IOC Classes in a package

2011-07-01 Thread Thiago H. de Paula Figueiredo
On Fri, 01 Jul 2011 03:35:54 -0300, dick_hu wrote: Did T5 IOC has the features that can IOC Classes in a package like spring org.mybatis.spring.mapper.MapperScannerConfigurer,it can ioc by the config like this What do you mean by "to IoC classes"? Add them as services/beans automatically?

Re: [ANN] Tapestry5 Training materials available

2011-07-01 Thread Thiago H. de Paula Figueiredo
On Fri, 01 Jul 2011 06:35:22 -0300, Emmanuel DEMEY wrote: Hi all, Hi! The WebPlatform Team (aka Got5), from Atos Worldline, is very pleased to share their Tapestry5 Training materials. You can now watch our Tapestry 5 Training screencasts on Vimeo : http://vimeo.com/channels/tapestry5 I h

Re: Simple question

2011-07-01 Thread Thiago H. de Paula Figueiredo
On Fri, 01 Jul 2011 07:31:18 -0300, wrote: Hello everyone! Hi! Is it possible to nest the output of variables, i.e.: something like: I don't think so. As far as I can remember, you can use symbol expansions, but not property ones in asset bindings. -- Thiago H. de Paula Figueiredo In

Re: T5 With myibatis

2011-07-01 Thread Thiago H. de Paula Figueiredo
On Fri, 01 Jul 2011 04:39:10 -0300, dick_hu wrote: Is there any example about T5 with myibatis,I want to try in my new project. I can't see why using MyIbatis with Tapestry 5 would be different from using it without Tapestry or with other Java Web framework. -- Thiago H. de Paula Figueir

Simple question

2011-07-01 Thread P . Stavrinides
Hello everyone! Is it possible to nest the output of variables, i.e.: something like: I know there are other solutions, but just asking if there is some syntax to do this type of thing? Thanks! Peter - To unsubscribe, e-mai

[ANN] Tapestry5 Training materials available

2011-07-01 Thread Emmanuel DEMEY
Hi all, The WebPlatform Team (aka Got5), from Atos Worldline, is very pleased to share their Tapestry5 Training materials. You can now watch our Tapestry 5 Training screencasts on Vimeo : http://vimeo.com/channels/tapestry5 I have also changed the wiki page : http://wiki.apache.org/tapestry/Tape

Re: Tapestry 5 in Action 50% Off

2011-07-01 Thread Yohan Yudanara
Unfortunately, I can't buy that book. Because when I checkout the order, I can't find my country (Indonesia) in the list. And then I found http://www.manning.com/about/faq_misc.html#country saying that online shopping is not available for some countries. I've email them and haven't got reply. Mayb

Re: Tapestry 5 in Action 50% Off

2011-07-01 Thread laloluke
Thank you for the info !! I got it!! -- View this message in context: http://tapestry.1045711.n5.nabble.com/Tapestry-5-in-Action-50-Off-tp4541119p4541386.html Sent from the Tapestry - User mailing list archive at Nabble.com. -

T5 With myibatis

2011-07-01 Thread dick_hu
Is there any example about T5 with myibatis,I want to try in my new project. -- View this message in context: http://tapestry.1045711.n5.nabble.com/T5-With-myibatis-tp4541264p4541264.html Sent from the Tapestry - User mailing list archive at Nabble.com. --

IOC Classes in a package

2011-07-01 Thread dick_hu
Did T5 IOC has the features that can IOC Classes in a package like spring org.mybatis.spring.mapper.MapperScannerConfigurer,it can ioc by the config like this I want to uses these services on T5's advise,but these is IOC by the spring,so advise is no use to them. So I want