Re: T4.1.4-SNAPSHOT issue migrating from 4.0.2 with PopupLinkSubmit

2007-11-07 Thread Dom Couldwell
FYI, if we remove the PopupLinkSubmit component we don't get the errors appearing in the logs so it's definitely related to something in that component Dom --- This e-mail may contain confidential and/or privileged information. If you are not the intended recipient (or have received this e-mail

Re: T4.1.4-SNAPSHOT issue migrating from 4.0.2 with PopupLinkSubmit

2007-11-07 Thread Jesse Kuhnert
No ideas are coming to mind right away, other than it looks like it's trying to do Map related functions without casting to map first. It is not a critical bug but it could potentially cause problems for you. Or at least be annoying to see during development and not as fast as it could be in p

Re: T4.1.4-SNAPSHOT issue migrating from 4.0.2 with PopupLinkSubmit

2007-11-07 Thread Andreas Andreou
On 11/7/07, Jesse Kuhnert <[EMAIL PROTECTED]> wrote: > I think you need to pass in "this" to your script execute call, the > current method you are executing is deprecated. In fact, I removed it in 4.1.4-SNAPSHOT... it was deprecated since 4.1.1 > > For the javascript calls you can refer to > >

Re: T4.1.4-SNAPSHOT issue migrating from 4.0.2 with PopupLinkSubmit

2007-11-07 Thread Dom Couldwell
OK we updated the generated Javascript with the new version of the Javascript function function submitPopupLink(form, elementId, url) { var windowName = 'RDQGraphPopup'; var randomNumber = Math.floor(Math.random()*1000); windowName = windowName+randomNumber; aWindow = window.open(url, wind

Re: T4.1.4-SNAPSHOT issue migrating from 4.0.2 with PopupLinkSubmit

2007-11-07 Thread Jesse Kuhnert
I think you need to pass in "this" to your script execute call, the current method you are executing is deprecated. For the javascript calls you can refer to http://tapestry.apache.org/tapestry4.1/javascript/index.html and http://tapestry.apache.org/tapestry4.1/jsdoc/index.html where you should

T4.1.4-SNAPSHOT issue migrating from 4.0.2 with PopupLinkSubmit

2007-11-06 Thread Dom Couldwell
We have a link on a page that does a submit and pops up a new window once the form has been submitted. The code is based on the PopupLinkSubmit example here: http://wiki.apache.org/tapestry/PopupLinkSubmit This all works fine on 4.0.2 but under 4.1.4-SNAPSHOT we get the following error when the