GWTUpload and >2GB files across DIFFERENT browsers

2011-01-17 Thread omsrobert
FireFox and IE have 2GB limits on the file size that can be uploaded to a server whereas Chrome does not have this limit. Does GWTUpload work around this limitation in FF + IE? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to th

Re: GWT 2.1.1 compiles 2 less permutations?????

2011-01-15 Thread omsrobert
Thanks. That explains it. I wish the release notes were available for it. On Jan 14, 4:46 pm, Chris Conroy wrote: > the gecko user agent was deleted. (it referred to Firefox 2, which is > ancient). gecko1_8 is Firefox 3+ > > On Fri, Jan 14, 2011 at 4:41 PM, omsrobert wrote: > &

GWT 2.1.1 compiles 2 less permutations?????

2011-01-14 Thread omsrobert
>From GWT 2.1.0 to GWT 2.1.1, we went from 12 permutations to 10 permutations. Why? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group,

GWT 2.1.1 release notes are missing

2011-01-14 Thread omsrobert
The URL below points to 2.1.0. Where are the 2.1.1 release notes? http://code.google.com/webtoolkit/release-notes.html#Release_Notes_Current -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-

Re: Any plans for UIBinder to allow custom parsers?

2010-10-14 Thread omsrobert
On Jun 4, 5:05 am, Blessed Geek wrote: > There should be a plan and strategy, perhaps by programmers supplying > a DTD to signify the allowed nodes and the DTD is compiled with the > parser java code. i.e., a gwt element-parser compiler. So, any plans > for a gwt element-parser compiler? Googl

Display permutation browser name / language / debug level?

2010-09-14 Thread omsrobert
It would be nice if I could see which permutation the compiler is working on with a bit more verbosity. Currently, I only see: [java]Compiling 12 permutations [java] Compiling permutation 0... [java] Compiling permutation 1... [java] Compiling permutation

Password Strength Widget?

2010-07-20 Thread omsrobert
Anyone have a password strength widget for either GWT or GXT? Client side or better client w/server side validation would be great. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-tool...@go

Why is the Timestamp compareTo bug not fixed?

2010-06-09 Thread omsrobert
This is a pretty serious issue for enterprise apps. i.e. sorting issues for date columns in a grid http://code.google.com/p/google-web-toolkit/issues/detail?id=3600&q=compareto Why has the GWT team not fixed it? There's even a patch/fix in the ticket. I really would hate to do a custom build/

Firefox 3.6 exception with GWT 2.0.2 / GXT 2.1.1 in hosted mode

2010-03-04 Thread omsrobert
I am getting a client-side exception in hosted mode ever since I upgraded Firefox to 3.6 from 3.5.8 [java] 2010-03-04 12:54:31,000 [DEBUG] logException() [java] 2010-03-04 12:54:31,000 [DEBUG] (TypeError): doc.getBoxObjectFor is not a function [java] fileName: http://localhost:8080

Re: GWT video/news/articles etc...

2010-03-03 Thread omsrobert
Here's one site: OnGWT http://www.ongwt.com -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubs

Re: Need help with JsonpRequestBuilder

2010-03-02 Thread omsrobert
I got it to work. I had to set the callback param and use requestObject() with a type of JavaScriptObject instead of String. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-tool...@googlegro

Re: Need help with JsonpRequestBuilder

2010-03-02 Thread omsrobert
I also tried jsonp.setCallbackParam("jsoncallback"); but it's not working. Is there any documentation other than the JavaDoc that shows how to use this? -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email t

Need help with JsonpRequestBuilder

2010-03-02 Thread omsrobert
I need some help getting a simple JSONP example to work. I just want to call a URL and parse the map that is returned. Need to (1) figure out why my code below doesn't work and (2) how to parse the map e.g. I have a server (192.168.1.99) that has a script: http://192.168.1.99/some_path/some_sc

Using Constants server-side?

2009-12-21 Thread omsrobert
I need to use the same localization mappings on the server as on the client. I can't instantiate Constants server-side. I suppose one method would be to read in the raw properties file and do a key lookup but I'd like to reuse the Java method interface if I can. Ideas??? -- You received this m

Managing localized strings on both server and client

2009-07-29 Thread omsrobert
I have been extending the GWT Constants interface to manage my localized strings with great success on the client. However, there are strings on the server that must also be localized. It would be nice to share the constants between the client and server. Has anyone done this? If so, how? --~-

GWT 1.6 - Expand Tree?

2009-06-16 Thread omsrobert
How do I expand all the nodes in a 1.6 Tree? I do not see an expand() method. setSelected()? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to Google-W

PureMVC and GWT 1.6 / GXT?

2009-05-26 Thread omsrobert
Anyone using PureMVC with GWT 1.6 and/or GXT? Do I need puremvc4gwt or just PureMVC? I would love to see a sample demo and source. Anyone have a link or code they can share? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

Re: GWT 1.6 - Building WAR for deployment?

2009-05-18 Thread omsrobert
I fixed the internal compile error by adding the following args to the JVM under the Advanced section of the GWT Compile Project dialog: -Xss1024k -Xmx512M --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web

GWT 1.6 - Building WAR for deployment?

2009-05-18 Thread omsrobert
I am using the Google plug-in for Eclipse for a GWT 1.6 / GXT 2.0 beta project. My app works fine in hosted mode but I am having problems moving to a .war file that I can deploy in Tomcat 6.0.18. 1. Ant support? I don't see any "ant" build file in the project so either I did something wrong or

GWT 1.6, jetty and session cookies

2009-05-11 Thread omsrobert
How can I configure jetty for my GWT 1.6 app to automatically create a session cookie? I tried adding a jetty-web.xml file to the WEB-INF directory without any success. http://jetty.mortbay.org/configure.dtd";> true --~--~-~--~~~

Re: any tips for beautify gwt applications?

2009-02-02 Thread omsrobert
GXT (http://www.extjs.com) is a pure Java solution (not a Javascript wrapper) Also, there are some GWT effects libraries around. On Feb 2, 5:54 am, jake H wrote: > Hello, > I m close to finish a gwt application project that i have started a > month ago. I m really delightful for gwt features an

Re: Need for a great GWT GUI library

2008-12-22 Thread omsrobert
GXT (aka Ext GWT) is a pure Java implementation of GWT. http://www.extjs.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to Google-Web-Toolkit@google

Re: Browser caching GWT javascript app

2008-12-13 Thread omsrobert
On Dec 13, 6:19 am, Thomas Broyer wrote: > On 12 déc, 20:35, omsrobert wrote: > > > We're using Tomcat 6.0.18 and GWT 1.5.3.  The browser (Firefox 3 at > > least) is caching our GWT application. Refreshing fixes it but that's > > not an option for productio

Browser caching GWT javascript app

2008-12-12 Thread omsrobert
We're using Tomcat 6.0.18 and GWT 1.5.3. The browser (Firefox 3 at least) is caching our GWT application. Refreshing fixes it but that's not an option for production. I would think this is a common issue. How do we fix it? Write a response header filter for Tomcat or is there a better way? Her

Re: 1.6 Users

2008-12-05 Thread omsrobert
Where can I get more info on 1.6 features? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to Google-Web-Toolkit@googlegroups.com To unsubscribe from this

How to use Regular Expressions (regex) in GWT?

2008-11-17 Thread omsrobert
How do you use regular expressions in GWT? Can someone post a small code sample? I'm looking to validate an e-mail address against a RFC. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.

What's the best way to override images/css in Chrome theme?

2008-11-13 Thread omsrobert
What's the best way to override images/css in Chrome theme? I'm looking to modify the DecoratedTabBar. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to

Rounded corners in DecoratedTabPanel fail to display in IE 6

2008-10-30 Thread omsrobert
The upper left and upper right corners are missing under IE 6. Is this a bug? How can I work around it? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email

Re: GWT-ext or ext-GWT?

2008-10-27 Thread omsrobert
I think licensing is one of the deciding factors: GWT-Ext (http://gwt-ext.com/) is free, open source. There is a companion, commercial product called GWT Plus (same author) that facilitates binding data objects to the widget record store. Ext GWT (http://extjs.com/products/gxt/) is now a commer

Customize appearance of tab in TabPanel

2008-10-22 Thread omsrobert
How do I customize the appearance of a tab in a TabPanel? Through a background image in a style? What should the format of the image be? ie. If I have ask a web designer for an icon, what should I ask them for? PNG? layers? should the image be of the entire tab or a border, what? Thanks...