Re: how to start learn T5.2.x?

2010-03-27 Thread oliver lee
thank you so much,Igor Drobiazko! follow your instruction ,i close the tapestry-hibernate* project in my eclipse workspace, then i can run the tutorial1 project successfully! i wonder why i have to close the tapestry-hibernate* project, the tutorial1 project or the t-h project got problem?? 201

Re: Autocomplete mixin css

2010-03-27 Thread Bryan Lewis
http://tapestry.apache.org/tapestry5/guide/css.html Basically, you'll look at Tapestry's built-in stylesheet -- default.css in the org.apache.tapestry5 folder of tapestry-core-5.1.0.5.jar or whatever version you have -- and take note of the style names that matter to you. For autocomplete, look fo

Autocomplete mixin css

2010-03-27 Thread Mite
Hi How can I override the css for the autocomplete mixin on the jumpstart page? I searched the forum but couldn't find anything. -- View this message in context: http://old.nabble.com/Autocomplete-mixin-css-tp28056100p28056100.html Sent from the Tapestry - User mailing list archive at Nabble.com

easyfckeditor and file upload

2010-03-27 Thread Tomek
Hi, i need to integrate a WYSIWYG editor to my website. I found only 2 projects that integrate fckeditor with tapestry 5 - ChenilleKit and easyfckeditor. I found that easyfckeditor support file uploads while ChenilleKit doesn't. I went through author's tutorial: http://t5-easy-fckeditor.kenai.com/

easyfckeditor and file upload

2010-03-27 Thread Tomek
Hi, i need to integrate a WYSIWYG editor to my website. I found only 2 projects that integrate fckeditor with tapestry 5 - ChenilleKit and easyfckeditor. I found that easyfckeditor support file uploads while ChenilleKit doesn't. I went through author's tutorial: http://t5-easy-fckeditor.kenai.com/

Re: Tapestry 5.2 + Google Appengine

2010-03-27 Thread Dmitry Gusev
You can use eclipse quick fix to ignore this error. 2010/3/27, Peter Kanze : > I solved the problem using this blog: > http://dmitrygusev.blogspot.com/2009/10/develope-java-applications-with-gae-sdk.html > > I added the AppEngineDevAgent class (see below) to my project. But now I get > this error

Re: Tapestry 5.2 + Google Appengine

2010-03-27 Thread Peter Kanze
I solved the problem using this blog: http://dmitrygusev.blogspot.com/2009/10/develope-java-applications-with-gae-sdk.html I added the AppEngineDevAgent class (see below) to my project. But now I get this error in Eclipse: java.lang.instrument.Instrumentation is not supported by Google App Engine

Tapestry 5.2 + Google Appengine

2010-03-27 Thread Peter Kanze
Hello I have a working webapp with Tapestry 5.2 running with Google Appengine. But when I add a simple form like this I get the error shown below. First Name: Last Name: 12:58:00,625 ERROR [org.apache.tapestry5.services.TapestryModule.RequestExceptionHandle

Re: Root path / Custom Index page + locale cannot be found -> 404

2010-03-27 Thread Christian Riedel
Sure: https://issues.apache.org/jira/browse/TAP5-1086 Am 27.03.2010 um 09:23 schrieb Igor Drobiazko: > This is a bug. Can you fill a jira issue? > > On Thu, Mar 25, 2010 at 10:34 PM, Christian Riedel > wrote: > >> Hi list, >> >> I am currently encountering an unexpected behavior with a custom

Re: t5: standard form and post

2010-03-27 Thread Thiago H. de Paula Figueiredo
On Fri, 26 Mar 2010 23:03:08 -0300, Angelo Chen wrote: Hi, Hi! T5 binds < t:form > to a page class. if standard < form > is used, how to define a page class method to accept the posting from the form? Thanks. Use the action parameter of the tag and pass it a link created by Component

Re: [5.2] NPE on property accessor ?

2010-03-27 Thread Igor Drobiazko
What exactly are you doing? More code would be useful. On Fri, Mar 26, 2010 at 10:28 AM, Joachim Van der Auwera wrote: > Hi, > > Does anybody where this NullPointerException could be coming from? > This is working is tapestry 5.1 but fails on trunk. > > The stacktrace : > > # org.equanda.tapestry

Re: .jsp behaviour in tapestry 5 pages

2010-03-27 Thread Igor Drobiazko
Yep, just create an eventlink with ComponentResources.createEventLink() and make twitter call the URL of that link as callback. Then put your logic into the handler method of the event. Take a look at page 214: there is a similar solution. On Fri, Mar 26, 2010 at 9:18 AM, Manuel Riegler < s071045

Re: Root path / Custom Index page + locale cannot be found -> 404

2010-03-27 Thread Igor Drobiazko
This is a bug. Can you fill a jira issue? On Thu, Mar 25, 2010 at 10:34 PM, Christian Riedel wrote: > Hi list, > > I am currently encountering an unexpected behavior with a custom > "tapestry.start-page-name". > > Configuration #1: Tapestry 5.1.0.5, tapestry.start-page-name = HomePage, > tested o

Re: how to start learn T5.2.x?

2010-03-27 Thread Igor Drobiazko
All of the test apps in the SVN repo can be started with RunJettyRun. You can check out the source of app1 from tapestry-core to learn Tapestry. In case of HiernateModule you should close the tapestry-hibernate-core project, then it will be loaded from your maven repo. I had the same issue two days