Re: StylesheetOptions().withCondition("IE") not working in 5.4

2014-04-28 Thread George Christman
Thanks Michael, I'll keep this in mind, but for the time being I'm just fixing the css to be compliant with ie10 and up. On Mon, Apr 28, 2014 at 10:10 AM, Michael Gentry wrote: > Hi George, > > I created a UserAgent service to query some basic browser information. > Since this is done entirely

Re: StylesheetOptions().withCondition("IE") not working in 5.4

2014-04-28 Thread Michael Gentry
Hi George, I created a UserAgent service to query some basic browser information. Since this is done entirely in Java, the approach could work for you, I think. Here is what the interface looks like: public interface UserAgent { public String getUserAgent(); public boolean isIE();

Re: StylesheetOptions().withCondition("IE") not working in 5.4

2014-04-28 Thread George Christman
looks as if this isn't a tapestry issue but rather a lack of conditional support with ie10. This appears to break Geoff jumpstart spinner example in later versions of ie http://jumpstart.doublenegative.com.au/jumpstart7/examples/ajax/loadingspinner On Mon, Apr 28, 2014 at 9:25 AM, George Christ

StylesheetOptions().withCondition("IE") not working in 5.4

2014-04-28 Thread George Christman
I have the following code in my layout component. @Inject @Path("context:css/zone-overlay-ie.css") private Asset ieCSS; void afterRender() { javaScriptSupport.importStylesheet(new StylesheetLink(ieCSS, new StylesheetOptions().withCondition("IE"))); } I'm using ie10 and the condition