Re: exception in IE on ajax request

2012-06-25 Thread Jochen Berger
Oh, I should have continued reading, sorry. Then, it's most likely also TAP5-1882/TAP5-1907. Am 26.06.2012 05:58, schrieb Ray Nicholus: Changing the following line in the addStylesheets function from: var loaded = _(document.styleSheets).chain().pluck("href").without(""). map(this.rebuildURLIf

Re: exception in IE on ajax request

2012-06-25 Thread Jochen Berger
Are you on IE9 and using Tapestry's logging in the success handler by any chance? Then it's probably TAP5-1887 that's hitting you. Am 26.06.2012 00:05, schrieb Howard Lewis Ship: That does seem odd. IE gets the least coverage, at least by me, since I can only run it in a VM, and it has the wors

Re: exception in IE on ajax request

2012-06-25 Thread Ray Nicholus
Changing the following line in the addStylesheets function from: var loaded = _(document.styleSheets).chain().pluck("href").without(""). map(this.rebuildURLIfIE).value(); to: var loaded = _(document.styleSheets).chain( ).pluck("href").without("").without(null).map(this.rebuildURLIfIE).value();

Re: exception in IE on ajax request

2012-06-25 Thread Ray Nicholus
I would never even open IE if I had the choice. The javascript console looks like someone's high school project. It turns out that IE's exception message was, as usual, misleading. I should also mention that I was getting the same exception message when tapestry attempted to execute consolefn.ca

Using external Font Libraries and the load stack

2012-06-25 Thread yazdog8
I have to use Typekit to import fonts on to our base layout. To do this, in the head of the base layout I need to add this script which writes a css file that includes the fonts that will be used. Unfortunately, it looks like Tapestry is re-writing any JS in the head so that the page JS stack

Re: exception in IE on ajax request

2012-06-25 Thread Howard Lewis Ship
That does seem odd. IE gets the least coverage, at least by me, since I can only run it in a VM, and it has the worst debugging experience of any browser. This still seems quite fishy though ... since when can you not call() a Function? On Mon, Jun 25, 2012 at 3:03 PM, Ray Nicholus wrote: > I'm

exception in IE on ajax request

2012-06-25 Thread Ray Nicholus
I'm seeing the following javascript exception in IE only when the ajaxRequest function is called in tapestry.js: Object doesn't support property or method 'call' I've confirmed that successHandler is not null, and call appears to be available as a native function. as one would expect. Any idea

Re: JSON request construct in Tapestry

2012-06-25 Thread Thiago H de Paula Figueiredo
On Mon, 25 Jun 2012 17:14:36 -0300, bogdan_cm wrote: I am trying to open Jira tickets directly from my application using atlassian's REST api. For this I need to create a JSON request and submit it to some Jira handled URL. Can I construct such a request in Tapestry? It's somewhat backwor

JSON request construct in Tapestry

2012-06-25 Thread bogdan_cm
I am trying to open Jira tickets directly from my application using atlassian's REST api. For this I need to create a JSON request and submit it to some Jira handled URL. Can I construct such a request in Tapestry? It's somewhat backword in that Tapestry becomes a client to the request. Assume h

Re: Disable X-Tapestry-ErrorMessage on response header

2012-06-25 Thread Yohan Yudanara
Hi.. I've found the solution.. 1. create class ExceptionReport which implements ExceptionReporter 2. override method reportException(Throwable exception) and set the response header to null: response.setHeader("X-Tapestry-ErrorMessage", null); Hope it helps someone who looking for the same thing

Tapestry 5.3.4-rc-7

2012-06-25 Thread Howard Lewis Ship
I've just uploaded Tapestry 5.3.4-rc-7. Key improvements: * More (minor) speed improvements * TAP5-1873: JavaScript execution exception is not logged * Fixes the Hibernate dependency to match 5.3.3 * TAP5-1880: Disable GZip compression for HTTP/1.0 * TAP5-1938: JpaValueEncoder encodes transient v

Re: Localized messages doesn’t work on internet explorer

2012-06-25 Thread Howard Lewis Ship
Tapestry requires that there be an app.properties file, or it doesn't look for localizations of app.properties. Do you have that file? It can be empty. On Mon, Jun 25, 2012 at 1:31 AM, Stemba wrote: > Hello, > > I’ve some problems with localized messages, it’s working on Firefox, Chrome > and

Localized messages doesn’t work on internet explorer

2012-06-25 Thread Stemba
Hello, I’ve some problems with localized messages, it’s working on Firefox, Chrome and Safari but not for Internet Explorer! My web xml: app org.apache.tapestry5.spring.TapestrySpringFilter app /* In WEB-INF the properties file name is app_fr.properties In my page,

Re: Hourglass during fle upload

2012-06-25 Thread Michael Gentry
I haven't tried this, but perhaps you could use a little JavaScript to set the cursor property on the BODY tag or something when they click the upload button? http://www.echoecho.com/csscursors.htm mrg On Mon, Jun 25, 2012 at 8:29 AM, Markus Grell wrote: > Greetings! > > I'm using Tapestry fil

Hourglass during fle upload

2012-06-25 Thread Markus Grell
Greetings! I'm using Tapestry file upload capabilities to upload some files. Is it possible to replace mouse pointer to something like an hourglass or so to show that system is busy doing stuff? At the moment I've no clue where to start here. Any ideas? M. Grell ---

Re: HashMap with Grid (or Loop)

2012-06-25 Thread Thiago H de Paula Figueiredo
On Sun, 24 Jun 2012 22:01:41 -0300, William Lopes wrote: @Thiago Tudo bem sim e você? Please post in English only in this mailing list. Eu coloquei o Object apenas para ficar mais fácil de entender, porque se eu colocar os nomes das entidades do português, talvez eles não entendam. Tra

Re: Updating multiple zones inside a loop

2012-06-25 Thread Lance Java
I *think* you want to render some blocks instead of the zone's body tml ${variable} ${variable} java @Property private String variable; @Inject Block redBlock; @Inject Block blueBlock; public void onSomeEvent(String variable) { this.variable = variable; ajaxResponseRenderer.

Re: BreadCrumbsModule error

2012-06-25 Thread sommeralex
code solve the problem> using the latest tapestry version instead of 2.5 thx for any help -- View this message in context: http://tapestry.1045711.n5.nabble.com/BreadCrumbsModule-error-tp5713794p5714065.html Sent from the Tapestry - User mailing list archive at Nabble.com. -