Re: Adding Dojo when not using the Shell Component

2006-12-28 Thread mraible
Removing Scriptaculous and Prototype in my SiteMesh decorator fixed the problem. After that, I tried upgrading to Scriptaculous 1.6.5 and that appears to fix the problem as well. Thanks for all the responses and help! Matt Jessek wrote: > > I think this is less an issue with Dojo or Tapestry

Re: Adding Dojo when not using the Shell Component

2006-12-28 Thread Jesse Kuhnert
Thinking on it more I'm fully convinced the problem is however sitemesh integrates with framework. The iframe_history.html url is an XHR / ajax request that doesn't map to any specific tapestry/context/whatever page and would only be resolved correctly by the Tapestry asset service. I'm sure th

Re: Adding Dojo when not using the Shell Component

2006-12-28 Thread Jesse Kuhnert
I think this is less an issue with Dojo or Tapestry (or WebWork) than it is with something else you are using. (ie sitemesh or your servlet container). Doing an http request for any resource should ~never~ cause a hang like this. Tapestry won't make it hang, and Dojo only sites and waits for an h

RE: Adding Dojo when not using the Shell Component

2006-12-28 Thread Leffel, Daniel
my project. -Original Message- From: mraible [mailto:[EMAIL PROTECTED] Sent: Thursday, December 28, 2006 1:58 PM To: users@tapestry.apache.org Subject: Re: Adding Dojo when not using the Shell Component It could be a friendly URL servlet-mapping situation. I'm using *.html as my "fri

Re: Adding Dojo when not using the Shell Component

2006-12-28 Thread mraible
It could be a friendly URL servlet-mapping situation. I'm using *.html as my "friendly URL" extension. I've experienced issues in the past when using .html with WebWork and Dojo. The strange thing is it works for some assets, but not others. Maybe I should try *.htm instead? IMO, it seems stran

Re: Adding Dojo when not using the Shell Component

2006-12-28 Thread Jesse Kuhnert
Ahhh. . Good ol FireBug. If you change your view to "Net" and select to see "All" in the top (using FireBug) you'll see that assets/static/dojo/iframe_history.html seems to be the culprit. I think that something other than tapestry must be handling the request in this instance. If it were tapest

Re: Adding Dojo when not using the Shell Component

2006-12-28 Thread mraible
I'm not using a custom component for the DatePicker - just the standard stuff that comes with Tapestry. While the calendar JavaScript may be causing issues with the form, it doesn't explain why the following list screen hangs: http://demo.raibledesigns.com/equinox-tapestry-4.1.1/users.html I'

Re: Adding Dojo when not using the Shell Component

2006-12-28 Thread Jesse Kuhnert
Ah, I can see what the problem is now. Or...At least why it's "hanging". The "var calendar_start " variable isn't resolvable later on and subsequently breaks most of the javascript. It looks like a Tapestry bug (I think), won't know more until I run some separate tests of my own. (you aren't usin

Re: Adding Dojo when not using the Shell Component

2006-12-28 Thread mraible
It looks like Dojo is getting included, but there's a 404 somewhere along the way as well. Here's a demo: http://demo.raibledesigns.com/equinox-tapestry-4.1.1/userForm.html Here's from the above URLs log file when I first access the page: 2006-12-28 14:07:58.476695500 [14:07:58.476] Compiling

Re: Adding Dojo when not using the Shell Component

2006-12-28 Thread Jesse Kuhnert
A demo may help. Sounds like some sort of resource can't be resolved. (I'm guessing it is probably including dojo at all ) On 12/28/06, mraible <[EMAIL PROTECTED]> wrote: Thanks - this does seem to work. However, it also causes an issue. For some reason, I'm now getting the good ol' "browser

Re: Adding Dojo when not using the Shell Component

2006-12-28 Thread mraible
Thanks - this does seem to work. However, it also causes an issue. For some reason, I'm now getting the good ol' "browser hang" issue. The page looks like it's finished rendering, but the status/progress bar indicates otherwise and "hangs" at 98% (or something like that). After about a minute,

RE: Adding Dojo when not using the Shell Component

2006-12-28 Thread Greg.L.Cormier
Dojo when not using the Shell Component For you I think the ScriptIncludes component will make more sense: http://tapestry.apache.org/tapestry4.1/components/general/scriptincludes.html This is partially covered in the very incomplete 4.0 > 4.1 upgrade guide as well: http://tapestry.ap

Re: Adding Dojo when not using the Shell Component

2006-12-28 Thread Jesse Kuhnert
For you I think the ScriptIncludes component will make more sense: http://tapestry.apache.org/tapestry4.1/components/general/scriptincludes.html This is partially covered in the very incomplete 4.0 > 4.1 upgrade guide as well: http://tapestry.apache.org/tapestry4.1/usersguide/upgrade4.0.html O