T5: CMS based on T5

2008-12-23 Thread Angelo Chen
Hi, Is there a CMS based on T5? or actually we don't need a CMS when using T5? Angelo -- View this message in context: http://www.nabble.com/T5%3A-CMS-based-on-T5-tp21156268p21156268.html Sent from the Tapestry - User mailing list archive at Nabble.com. --

Re: About the value of the parameters

2008-12-23 Thread Tan cyb...@n
hi, thank you for the information. I also finding on the solution. hope can fix it soon. Thank you. Regards, Tan 2008/12/24 dhning > I've tested, cause is the zone because it attaches another 'click' event > too. > > I can't figure out a solution yet. > Refer here to see what the author of C

Re: About the value of the parameters

2008-12-23 Thread dhning
I've tested, cause is the zone because it attaches another 'click' event too. I can't figure out a solution yet. Refer here to see what the author of Confirm said. http://markmail.org/message/um2pzavehm3ueoaw?q=link+confirm+zone+list:org%2Eapache%2Etapestry%2Eusers&page=2 DH - Original Mess

Re: About the value of the parameters

2008-12-23 Thread Tan cyb...@n
hi, I can't remove it because it is also playing a very important role. because it might affect all my operation. any solution? Thank you. REgards, Tan 2008/12/24 dhning > Hi, > > Maybe because of the zone, why not have a try by removing it? > > > DH > > > > hi, > > thanks for reply. I have

Re: About the value of the parameters

2008-12-23 Thread dhning
Hi, Maybe because of the zone, why not have a try by removing it? DH > hi, > thanks for reply. I have copy all the sample and deploy into my program > using t:mixins="confirm" as well. > if(! confirm(this.message)) e.stop(); is only i wanted to ask when the > script is reached that stateme

Re: About the value of the parameters

2008-12-23 Thread Tan cyb...@n
hi, thanks for reply. I have copy all the sample and deploy into my program using t:mixins="confirm" as well. if(! confirm(this.message)) e.stop(); is only i wanted to ask when the script is reached that statement. :) below are my statement in tml. is it because it contained t:zone and cau

[T5] [T5-Components] OnEvent mixin is sending the wrong response object to onCompleteCallback

2008-12-23 Thread Jayson Pierringer
The change event fires properly and then my onCompleteCallback fires, but the javascript function is not using the correct response value -- it should get a JSONObject as a parameter. Instead it looks like it is using the same value as the onChangeCustomerSelectEvent -- the customerId. The fo

Re: T5: encoding issues

2008-12-23 Thread Christoph Jäger
Hi José, the java files seem to be UTF-8. At least Eclipse tells me so, and if I write some of the special characters to stdout (from a test case, not running in Tomcat), everything is fine. Thanks, Christoph On Dec 23, 2008, at 15:05 , José Paumard wrote: Hello Christoph, Just a tough

RE: Tapestry Upgrade problem

2008-12-23 Thread Mike Wasserman
java version "1.5.0_10" Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_10-b03) Java HotSpot(TM) Client VM (build 1.5.0_10-b03, mixed mode, sharing) -Original Message- From: Howard Lewis Ship [mailto:hls...@gmail.com] Sent: Tuesday, December 23, 2008 2:00 PM To: Tapestry us

Re: Tapestry Upgrade problem

2008-12-23 Thread Howard Lewis Ship
What JDK are you running on? On Tue, Dec 23, 2008 at 10:50 AM, Mike Wasserman wrote: > I am upgrading from Tapestry 4.1.2 to Tapestry 4.1.6. > When I run my integration tests (using Selenium) I am get a error randomly. > I receive a org.apache.hivemind.ApplicationRuntimeException that indicates

Tapestry Upgrade problem

2008-12-23 Thread Mike Wasserman
I am upgrading from Tapestry 4.1.2 to Tapestry 4.1.6. When I run my integration tests (using Selenium) I am get a error randomly. I receive a org.apache.hivemind.ApplicationRuntimeException that indicates that given component (page) does not contain a component shell. All of the affected pages hav

Re: Blog post about Tapestry 5 - Project Structure

2008-12-23 Thread Luther Baker
Nice. On Mon, Dec 22, 2008 at 11:32 PM, Borut Bolčina wrote: > I made another post at > http://bbwebcraft.blogspot.com/ > Task 2 – Explore the Tapestry 5 project structure and learn where to put > your stuff > > I hope you don't consider this email as spam. > > Cheers, > Borut >

Re: Blog post about Tapestry 5 - Project Structure

2008-12-23 Thread Andy Pahne
Great post, again! Andy Borut Bolčina schrieb: I made another post at http://bbwebcraft.blogspot.com/ Task 2 – Explore the Tapestry 5 project structure and learn where to put your stuff I hope you don't consider this email as spam. Cheers, Borut --

Re: JSONStreamResponse. How to return an array?

2008-12-23 Thread Howard Lewis Ship
Francois is right, the client side can not directly invoke methods of Tapestry pages or components; this is by design. The component side can send events to specific components, and then what happens is totally defined by the server (and therefore, more predictable and less hackable). Component ev

Re: About the value of the parameters

2008-12-23 Thread ningdh
You are welcome:) I completely copied that code 2 weeks ago, create a mixin and it runs well for actionlink and submit. I think you didn't implement that mixin, but only add 'if(! confirm(this.message)) e.stop();' to submit button? DH > hi, > > I have done that, but seems like useless. even

Re: About the value of the parameters

2008-12-23 Thread Tan cyb...@n
hi, I have done that, but seems like useless. even i press cancel. it will still post is it applicable for actionLink( i mean this tutorial) also? if(! confirm(this.message)) e.stop(); THank you. Tan 2008/12/23 ningdh > > I am afraid you must stop the event as > http://wiki.apache.

Re: [T5] Exposing child component parameters : inherit, autoconnect... Nothing better ?

2008-12-23 Thread Francois Armand
Francois Armand wrote: In my component building, I have a really common pattern which is: - I have a child component, which has a parameter, like : - I have a parent component, in which I use ChildComponent (standard component composition), and I want to expose some or all parameters of Chil

Re: T5: encoding issues

2008-12-23 Thread José Paumard
Hello Christoph, Just a tought, but could it come from the encoding of your .java file ? It is UTF-8 too, as .tml and .propreties are ? José Christoph Jäger a écrit : Hi, I have a strange issue with character encoding. I use Tapestry 5 on a Tomcat 6.0.18 installation. No difference betwee

Re: About the value of the parameters

2008-12-23 Thread ningdh
I am afraid you must stop the event as http://wiki.apache.org/tapestry/Tapestry5AndJavaScriptExplained does, or else the request is still posted. > hi 滕训华 , > > do you might to share out your coding about > @Component(parameters = {"onClick=literal:return confirm(\"do you want to > delete this

Re: Reloading component templates from Maven's jetty plugin

2008-12-23 Thread Olle Hallin
How is your IDE configured? In Eclipse, it is possible to set it to build automatically when a file is saved. For .tml files, "build" means copy it from src/main/resources to target/classes. It is also possible to turn this feature off, requiring one to both save (Ctrl-S) and build (Ctrl-B) before

Re: Reloading component templates from Maven's jetty plugin

2008-12-23 Thread Josh Long
Hello, What configuration, exactly, is anyone using to achieve this? I'm not getting any results, alas. I tried excluding **/components/**, **/pages/**, etc from src/main, src/main/tesources, src/main/java, etc No luck.Would anybody mind sharing this with me? I'm simply looking to be able to type