Re: Issues with IE GWT compiled javascript is 11MB

2011-03-04 Thread cvh
Yes, you can instruct GWT to compile only for say Firefox on Windows: see http://stackoverflow.com/questions/890352/gwt-module-xml-how-to-redefine-and-use-more-than-one-user-agent On Mar 4, 5:18 pm, sridevi macherla wrote: >  Is there any mechanism to generate browser sepecific example I have 3

Re: Issues with IE GWT compiled javascript is 11MB

2011-03-04 Thread Ben Imp
I believe GWT already does that. The browser should only be loading one of the permutations. You should look at code splitting. Cutting out code you dont need couldn't hurt either. -Ben On Mar 4, 11:18 am, sridevi macherla wrote: >  Is there any mechanism to generate browser sepecific example

Re: Issues with IE GWT compiled javascript is 11MB

2011-03-04 Thread sridevi macherla
Is there any mechanism to generate browser sepecific example I have 3 browser, but currenlty user is browsing in Firefox, so the rest of permutation can be ignored meaning dynamic binding of browser specific way so that way the javascript can be reduced to a larger extent, but please suggest me.

Re: Issues with IE GWT compiled javascript is 11MB

2011-03-04 Thread sridevi macherla
Larsen, Can't we use any other options available, like the Generators. Thanks Sri On Fri, Mar 4, 2011 at 9:53 PM, Jeff Larsen wrote: > 11MB you're probably gonna want to start looking into codesplitting > various parts of the app. That is probably the only way you're going to get > that be

Re: Issues with IE GWT compiled javascript is 11MB

2011-03-04 Thread Jeff Larsen
11MB you're probably gonna want to start looking into codesplitting various parts of the app. That is probably the only way you're going to get that beast down to a reasonable size. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To

Issues with IE GWT compiled javascript is 11MB

2011-03-04 Thread sridevi macherla
Hi, Everyone, need a help I have a huge application almost entire application is totally interlinked with most of the pages. And finally the javascript that is being generated in prod mode is around 11 MB and the IE/firefox is not able to load this huge javascript file. Someone please suggest a