Re: dojo DEBUG messages

2006-10-07 Thread Martin Strand
Are you sure you're using 4.1.1? It works here... On Sat, 07 Oct 2006 00:36:52 +0200, Leo Sakhvoruk [EMAIL PROTECTED] wrote: Thanks for such a quick response, still no luck though. Leo Jesse Kuhnert wrote: Ahh..Looks like I made it so that you have to use an ognl expression ... Try

Problem Understanding Tapestry..

2006-10-07 Thread Skorpien126
Hi @ All I?ve try to build a page but i?m not right in understanding how tapestry works OK: I Have a Page Class Context (extending BasePage implementing PageBeginRenderListener)which consists some propertys of Type Persons which extends from BaseComponent and which ist not abstract.

What causes Unable to read OGNL expression 'parsed OGNL expression' errors?

2006-10-07 Thread Dave Rathnow
Could someone tell me what causes this error: Unable to read OGNL expression 'parsed OGNL expression' ... ognl.NoSuchPropertyException: $BasePage_0.rawDataFeedList I'm a little confused becuase I'm getting this exception toss when it looks like I have everything setup correctly. I am using

Re: What causes Unable to read OGNL expression 'parsed OGNL expression' errors?

2006-10-07 Thread DJ Gredler
Just taking a quick stab at it... It says it can't find property $BasePage_0.rawDataFeedList, so it looks like maybe Tapestry is using an enhanced version of BasePage, not your Home page. Does your page specification XML file point to your class or to Tapestry's BasePage? On 10/7/06, Dave

preventBackButtonFix

2006-10-07 Thread Martin Strand
The Shell component automatically sets dojo's preventBackButtonFix = false, is there a way to change that? Thanks, Martin - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: What causes Unable to read OGNL expression 'parsed OGNL expression' errors?

2006-10-07 Thread Oort, Dick
Hi, What is in your Home.page file ? Probably missing property name=rawDataFeed there? Or you might want to inject the property using annotation Good luck -Original Message- From: Dave Rathnow [mailto:[EMAIL PROTECTED] Sent: Saturday, October 07, 2006 3:53 PM To: Tapestry users

Re: What causes Unable to read OGNL expression 'parsed OGNL expression' errors?

2006-10-07 Thread Dave Rathnow
Hmmmmaybe I'm more confused than I think. Is the .page file necessary with Tapestry 4 and java 1.5. I didn't create one and things seemed to be working fine until I moved the project from my work PC to my home. Does every Tapestry 4 component have to have a .page, .html, and .java file?

Re: What causes Unable to read OGNL expression 'parsed OGNL expression' errors?

2006-10-07 Thread DJ Gredler
On 10/7/06, Dave Rathnow [EMAIL PROTECTED] wrote: Hmmmmaybe I'm more confused than I think. Is the .page file necessary with Tapestry 4 and java 1.5. I didn't create one and things seemed to be working fine until I moved the project from my work PC to my home. Does every Tapestry 4

Re: preventBackButtonFix

2006-10-07 Thread Jesse Kuhnert
Done. Will deploy later today. On 10/7/06, Martin Strand [EMAIL PROTECTED] wrote: The Shell component automatically sets dojo's preventBackButtonFix = false, is there a way to change that? Thanks, Martin - To unsubscribe,

Re: preventBackButtonFix

2006-10-07 Thread Martin Strand
Thanks. You're great, Jesse. On Sat, 07 Oct 2006 22:35:40 +0200, Jesse Kuhnert [EMAIL PROTECTED] wrote: Done. Will deploy later today. On 10/7/06, Martin Strand [EMAIL PROTECTED] wrote: The Shell component automatically sets dojo's preventBackButtonFix = false, is there a way to change

Re: Equivalent of JSP Includes?

2006-10-07 Thread Dobrin Ivanov
Did you succeed with this? It would be great to have this into the core Tapestry components .. --- Patrick Moore [EMAIL PROTECTED] wrote: I would put in a vote for something like the Dynamic Block making it into the main tap release. I have been wondering how to do this myself!

eZingBuilder (Tapestry WYSIWYG eclipse plugin) release v1.0.5

2006-10-07 Thread Jinshan Li
Tapestry WYSIWYG eclipse plugin release v1.0.5 1.eZing Builder 1.0.5 require eclipse 3.2 and WTP 1.5 . 2.Tapestry config file visual editor(for .application, .page and .jwc file) 3.Improve the tapesry html visual editor. 4.For ajax project ZK(http://www.zkoss.org/) *zul and zhtml visual designer

Re: DropDownTImePicker doesn't read and display the time chosen

2006-10-07 Thread Jesse Kuhnert
This should be solved by the deploy going out tonight. Both DropdownDatePicker DropdownTimePicker should be fully functional/localizable as you would expect with normal components. On 10/1/06, Josh Long [EMAIL PROTECTED] wrote: I don't know if this has always been this way as the first time

Class library visibility issues with Maven in Eclipse.

2006-10-07 Thread Leo Sakhvoruk
Hi, I'm trying to use the latest snapshot builds of Tapestry via Maven for the project I'm working on in Eclipse. I use Tomcat via a launcher from Eclipse to debug the application and have had 0 problems with it while adding library jars to the WEB-INF/lib directory of the project I work on.

Re: Class library visibility issues with Maven in Eclipse.

2006-10-07 Thread Jesse Kuhnert
I'd use jetty if given the choice during development. It literally only takes a line or two to make your pom.xml capable of running your existing web app without doing anything else. Very nice/convenient. Look at TimeTracker's pom.xml for an example. It's what I use during dev at least..(most of