Re: CellTable Memory Leak in IE8

2015-08-13 Thread Dave Chapman
leElement.replaceChild(newSection, section). Once I moved the setting of > innerHTML to null to after this call, the table updates properly, but the > leak still remains. > > Upon further testing, the memory leak seems to be largely from the > replaceChild call. I guess if the entire Ta

Re: CellTable Memory Leak in IE8

2015-08-12 Thread Harvard Pan
m the replaceChild call. I guess if the entire TableSection is replaced in the DOM, IE8 doesn't properly clean this up, even if you set the innerHTML to null for the individual rows. I changed the implementation of replaceTableSection so that it ends up calling replaceAllRowsImplLegacy (which replaces

Re: CellTable Memory Leak in IE8

2015-08-05 Thread DaveC
have to dig into AbstractCellTable in order to fix this. I >> did a quick test of a fix I implemented and it "appears" to work for IE11 >> running IE8/IE9 mode but not IE10 mode, I've not tested it in a real IE8 or >> IE9. >> >> Basically what I did wa

Re: CellTable Memory Leak in IE8

2015-08-05 Thread Harvard Pan
to dig into AbstractCellTable in order to fix this. I > did a quick test of a fix I implemented and it "appears" to work for IE11 > running IE8/IE9 mode but not IE10 mode, I've not tested it in a real IE8 or > IE9. > > Basically what I did was exaactly what

Re: CellTable Memory Leak in IE8

2015-08-04 Thread DaveC
Hi, I think you'll have to dig into AbstractCellTable in order to fix this. I did a quick test of a fix I implemented and it "appears" to work for IE11 running IE8/IE9 mode but not IE10 mode, I've not tested it in a real IE8 or IE9. Basically what I did was exaactly

CellTable Memory Leak in IE8

2015-07-23 Thread Harvard Pan
Hello, Our company uses GWT 2.5.1-rc1 and many of our customers (healthcare) use IE8. We were hopeful that the memory leak in CellTable would have been addressed by the memory leak fix for FlexTable. That leak (Issue 6938 - https://code.google.com/p/google-web-toolkit/issues/detail?id=6938

GWT 2.0.4 + GXT 2.2.1 + IE8

2014-12-17 Thread Rogério Braudes
Hi, We have an application using GWT 2.0.4 and GXT 2.2.1 on IE8, sundelly, in the middle of an aleatory action, the app stops to load the windows showing only the background image. Can anyone help me to solve this crazy? Thx everyone. -- You received this message because you are subscribed

Re: IE8 application performs better in dev mode than under compiled mode

2014-07-10 Thread Corey Bishop
nt when running in DEV mode, but not when it's compiled. >> I'd like to understand is happening in DEV mode that is different from >> compiled that improve performance. Ultimately, the GWT Plugin is serving up >> javascript to IE8 to render, correct? It's just comp

Re: IE8 application performs better in dev mode than under compiled mode

2014-07-10 Thread Jens
Ultimately, the GWT Plugin is serving up > javascript to IE8 to render, correct? It's just compiling that javascript > on the fly from the java code. What's different about the javascript being > generated by the plugin from the javascript genereted by the compiler? > Well whi

Re: IE8 application performs better in dev mode than under compiled mode

2014-07-10 Thread Corey Bishop
Also, I should note that I'm on GWT 2.5.1. We need to upgrade, but are a little too late in the cycle right now. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an ema

Re: IE8 application performs better in dev mode than under compiled mode

2014-07-10 Thread Corey Bishop
I'll try those compiler settings and see if they help (and make sure they don't hurt). And loading a lot of JS/DOM for IE8 is my problem. I'm doing paging and progressive loading to alleviate the issue. With long running scripts, you can periodically check in with the main bro

Re: IE8 application performs better in dev mode than under compiled mode

2014-07-10 Thread Jens
I think the remaining compiler settings won't buy you a lot additional performance. The reason why the above settings cost you so much performance is that the generated JavaScript will be 2x+ the size than what it should be. Especially recordLineNumbers hurts as GWT will generate one extra line

IE8 application performs better in dev mode than under compiled mode

2014-07-10 Thread Corey Bishop
I have a complex web application that I have to get running under IE8 (no choice on this). I've been dogged by performance issues for weeks. The application runs really slow. I get the annoying "Do you want to stop running this script?" warnings. We've been optimizing for

Re: DataGrid header style has problem in IE8

2014-07-08 Thread vijay gohel
Please apply column width of datagrid.setColumnWidth method it will set header fix and white space will not display. Example datagrid.setColumnWidth(projectCode, columWidth + "px"); On Tuesday, 4 December 2012 13:48:17 UTC+5:30, tong123123 wrote: > > as shown in the attach

Re: blank page and mystic error in IE8

2014-06-04 Thread Thad Humphries
I looked into SVG solutions for IE8 about 2 years ago and found nothing. I was able to convince my boss that, at least for the product I was working on, users would be required to use IE9, Firefox, or Chrome. It was a good decision. On Wednesday, June 4, 2014 1:41:47 PM UTC-4, Magnus wrote

Re: blank page and mystic error in IE8

2014-06-04 Thread Jens
> > Or would you simply ignore such an old browser? > I would ignore them. IE8 support would mean you want to support Windows XP which isn't even supported by Microsoft anymore. IE9 support would mean you want to support Windows Vista which no one uses because it was a bad

Re: blank page and mystic error in IE8

2014-06-04 Thread Magnus
the SVG library (svgjs.com) with IE8, I get a nice message telling that my browser does not support SVG. - When I go to the homepage of another SVG library (snapsvg.io), I get an error message pointing into the JS file of the library, wich is also ok. But when I load my app into IE

Re: blank page and mystic error in IE8

2014-06-03 Thread David
thr.getMessage() will return null when it is an exception without a message (NullPointerException for example). So maybe you are now seeing an exception in calling Window.alert On Wed, Jun 4, 2014 at 7:03 AM, Magnus wrote: > Wait, something has changed! > > >

Re: blank page and mystic error in IE8

2014-06-03 Thread Magnus
Wait, something has changed! There seems to be an uncaught exception ("Annahme" may be a wrong german translation for "exception"...): But I have installed a handler: @Override public void onU

Re: blank page and mystic error in IE8

2014-06-02 Thread Magnus
Hi, I installed an UncaughtExceptionHandler, but nothing is fired. So it makes no sense to enable stack traces, right? But there must be something that I can do. What about the line number? Why doesn't it exist? Did I look into the wrong js file? Magnus -- You received this message because yo

Re: blank page and mystic error in IE8

2014-05-31 Thread Jens
> > How can I enable stack traces? I did not find anything useful about it. > https://code.google.com/p/google-web-toolkit/wiki/WebModeExceptions#Emulated_Stack_Data https://code.google.com/p/google-web-toolkit/wiki/WebModeExceptions#Controls If you want to handle the exception in Java you shou

Re: blank page and mystic error in IE8

2014-05-31 Thread Magnus
Hi, I keep getting this error: Well, I compiled in detailed mode, but the line number 81806813 doesn't exist in my js (which I believe is app.nocache.js). It only has lines up to 449. Looking i

Re: blank page and mystic error in IE8

2014-05-30 Thread Jens
When compiled in pretty or detailed mode you could look at the mentioned line and character in your js file. Alternatively you could try to enable emulated stack traces in GWT. Maybe you get more information then. Also make sure your have a in your html page so you are not in quirks mode. Th

Re: blank page and mystic error in IE8

2014-05-30 Thread Magnus
> > No ideas? > -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email to goog

blank page and mystic error in IE8

2014-05-29 Thread Magnus
Hi, my app does not show anything in IE8. Instead, a mystic error is reported (see below). Another app, which was created the same way, works fine. I also set the google compiler to "Detailed", but the error message keeps the same. Can you help? Thanks Magnus Details zum Fehl

AbstractCell does not support space/arrow keys in IE8

2013-12-03 Thread Yan
Hi there, I have noticed that the cell widget showcase demo does not work in IE8, you cannot enter space in the text field, nor can you use right arrow key to move cursor within textfield. I suspect that this is because these keys are used for selection, but this works in Chrome just fine

IE8 with chromeframe not loading gwt2.4 application

2013-08-26 Thread Prakash M
Hi, IE8 fails to load gwt2.4 app when chrome frame plugin is installed. It works fine after uninstalling chrome frame plugin. I think i'm hitting the same issue mentioned in https://code.google.com/p/google-web-toolkit/issues/detail?id=6665 There is a workaround ie modi

SimplePager buttons missing on IE8

2013-08-07 Thread Mark Wengranowski
ed to work great. The newer browsers work just fine. Anyone have any insight as to what I should try to fix the issue. I've tried all of the different ie8 browser modes and nothing seems to help(standards, quirks, compatibility). I also use GCharts and it doesn't render properly

Video player for IE8

2013-07-31 Thread Joel
I'm looking for a video player I can use for IE8. I have solutions for the other platforms we support, but IE8 has been problematic, the Flash player we use doesn't want to load. J -- You received this message because you are subscribed to the Google Groups "Google Web Too

Re: Rendering/painting in IE8/IE9 is slow when compared to FireFox(21.0) and Chrome(Version 27.0.1453.110 m) using GWT.

2013-06-17 Thread Jens
it using parentElement.setInnerHTML(). -- J. Am Montag, 17. Juni 2013 09:29:55 UTC+2 schrieb ajayb...@gmail.com: > > Rendering/painting in IE8/IE9 is slow when compared to FireFox(21.0) and > Chrome(Version 27.0.1453.110 m) using GWT. > > During GWT Table rendering, for each Tab

Rendering/painting in IE8/IE9 is slow when compared to FireFox(21.0) and Chrome(Version 27.0.1453.110 m) using GWT.

2013-06-17 Thread ajaybela . ab
Rendering/painting in IE8/IE9 is slow when compared to FireFox(21.0) and Chrome(Version 27.0.1453.110 m) using GWT. During GWT Table rendering, for each Table cell, we use the below API: 1. com.google.gwt.user.client.ui.Grid.getCellFormatter().setStyleName 2

Re: IE8 enormous memory consumption

2013-05-16 Thread Marteijn Nouwens
ood at Chrome, FF, and IE9 but is incredibly slow in > IE8. > > Memory consumption on opening the main page and the most heavy popup is as > follows: > FF ~250Mb > IE9 ~230 Mb > IE8 ~600-700 Mb (!!) I don't think it's a memory leak, because memory > stayed stab

Re: IE8 enormous memory consumption

2013-05-15 Thread David
Hi, When you run IE8 in quirksmode GWT still reports that you are using ie6 and as such overriding of ClippedImageImplIE6 still makes a difference. (Assuming that your site is running in quirksmode and you use the Image class). Otherwise you can indeed ignore this. 25% that is really terrible! I

Re: IE8 enormous memory consumption

2013-05-15 Thread Borys Zibrov
constant and around 25% and everything renders not very fast at all : ( вторник, 14 мая 2013 г., 16:17:55 UTC+3 пользователь stuckagain написал: > > Hi, > > IE8 consumes a lot of memory, especially in combination with GXT. > > GXT relies on opacity which is know to consume a lo

Re: IE8 enormous memory consumption

2013-05-14 Thread David
Hi, IE8 consumes a lot of memory, especially in combination with GXT. GXT relies on opacity which is know to consume a lot of memory in IE8. GWT uses of DXTransform to enable alpha blending for PNGs. In fact it will even constantly consume CPU power when you use the Image class. If you don&#

Re: IE8 enormous memory consumption

2013-05-14 Thread Borys Zibrov
Yeah, I now it is faster, I just wish there was something I could do On Tuesday, May 14, 2013 2:39:51 PM UTC+3, Jens wrote: > > IE8 is just a different beast than IE9. As IE9 is a lot faster than IE8 I > would guess they changed a lot internally and these changes also account > fo

Re: IE8 enormous memory consumption

2013-05-14 Thread Jens
IE8 is just a different beast than IE9. As IE9 is a lot faster than IE8 I would guess they changed a lot internally and these changes also account for the memory difference you are seeing. IE9 is just more efficient than IE8. I think you cant really change anything about it but I would be

IE8 enormous memory consumption

2013-05-14 Thread Borys Zibrov
Hi! We've got an application on GWT 2.5.0 + GXT 3.0.4 with one main page, containing a big table (like Excel) and a couple of heavy popups (implemented using GXT Windows). It works reasonably good at Chrome, FF, and IE9 but is incredibly slow in IE8. Memory consumption on opening the

Re: Gwt user agent issue in IE8

2013-03-27 Thread ram
Anyone please throw an idea to resolve the issue. On Wednesday, March 27, 2013 1:06:09 PM UTC-4, ram wrote: > > I inherit the module User, hence I have not explicitly added setting for > the browser, but IE8 is not displaying the application and running with > wait cursor indefinite

Re: Gwt user agent issue in IE8

2013-03-27 Thread ram
I inherit the module User, hence I have not explicitly added setting for the browser, but IE8 is not displaying the application and running with wait cursor indefinitely. Hence, I added this setting for IE8, 9 and Chrome. Again no luck for IE8 but works for IE9 and Chrome as expected

GWT TabPanel in firefox , IE8 & 9

2013-03-06 Thread Rob Green
We have an application developed in IE7 and it works fine, but when we try to run it in FF, ie8 & 9 the widgets in tabPanel does not load/show, everything works fine thou except only not showing the widgets in the tabpanel. -- You received this message because you are subscribed to the Go

Re: Gwt user agent issue in IE8

2013-03-04 Thread ram
How to avoid compatibility mode for IE8. On Monday, March 4, 2013 11:15:43 AM UTC-5, ram wrote: > > If I set the below attribute in the Gwt module, it works in IE8 but not in > IE9. > >value="false"/> > > On Monday, March 4, 2013 8:52:27 AM UTC-5, ram

Re: Gwt user agent issue in IE8

2013-03-04 Thread ram
If I set the below attribute in the Gwt module, it works in IE8 but not in IE9. On Monday, March 4, 2013 8:52:27 AM UTC-5, ram wrote: > > Thanks for the reply. You're right, the browser Chrome Frame has been > added in Gwt module. > > On Sunday, March 3, 2013 1:59:14

Re: Gwt user agent issue in IE8

2013-03-04 Thread ram
Thanks for the reply. You're right, the browser Chrome Frame has been added in Gwt module. On Sunday, March 3, 2013 1:59:14 PM UTC-5, Jens wrote: > > Maybe the IE8 you have tested activates compatibility mode for your site? > Or it has installed Chrome Frame that maybe causes issu

Re: Gwt user agent issue in IE8

2013-03-03 Thread Jens
Maybe the IE8 you have tested activates compatibility mode for your site? Or it has installed Chrome Frame that maybe causes issues? As long as you have referenced ie8 in the user.agent property (or haven't changed the user.agent property at all) it should work. Not sure what you mean

Gwt user agent issue in IE8

2013-03-02 Thread ram
Hi All, Recently we noticed that our GWT modules are rendering in all browsers except IE8. Though I inherited UserAgent in our gwt module xml. As per UserAgent the application should display in all browsers (ie6,ie8, ie9, gecko,safari, opera), but it is showing all browsers except IE8. I am

Re: Compiling for IE8

2013-02-14 Thread Paul Krants
I got exactly the same problem. Some users with IE7/IE8 unable to load our GWT module. What I have in my initial html file is: function myAccountOnLoadErrorFn(moduleName) { alert('Failed to load module [' + moduleName + '].');

GWT, IE8 and screen reader

2013-02-11 Thread Michael Vogt
Hello. I have a strange problem when using IE8 with the screen reader jaws. For example, when a text field receives the focus, the whole page is read from the beginning, Looking at the html, it seems a lot of the html is duplicated inside a __listener attribute. This does not happen with IE9

Re: Compiling for IE8

2013-01-30 Thread Thomas Broyer
On Wednesday, January 30, 2013 9:45:24 PM UTC+1, Colin Alworth wrote: > > The skype browser plugin adds additional

Re: Compiling for IE8

2013-01-30 Thread Colin Alworth
The skype browser plugin adds additional

Re: Compiling for IE8

2013-01-30 Thread Thomas Broyer
On Thu, Jan 17, 2013 at 9:08 AM, Thomas Broyer > wrote: > >> >> I've got a fairly complex RIA application involving GWT 2.5 and GXT > >> >> 3.0.1, > >> >> and I noticed that changing compiler flags (like optimization level) > >> >

Re: Compiling for IE8

2013-01-30 Thread Luca Morettoni
lags (like optimization level) >> >> doesn't >> >> improve (and even degrades) performance in IE8. >> >> So, could anyone help me out: what are the best compiler settings for >> >> performance in IE8 in production mode. >> >> About IE8 br

Re: Compiling for IE8

2013-01-30 Thread Thomas Broyer
g compiler flags (like optimization level) > doesn't > >> improve (and even degrades) performance in IE8. > >> So, could anyone help me out: what are the best compiler settings for > >> performance in IE8 in production mode. > > About IE8 browser, I ha

Re: Compiling for IE8

2013-01-29 Thread Luca Morettoni
On Thu, Jan 17, 2013 at 9:08 AM, Thomas Broyer wrote: >> I've got a fairly complex RIA application involving GWT 2.5 and GXT 3.0.1, >> and I noticed that changing compiler flags (like optimization level) doesn't >> improve (and even degrades) performance in IE8. >

Re: No Textbox can take the focus by mouse clicking in IE8

2013-01-21 Thread Alex Ph
t; I have a problem in GWT 2.0.4 that I can reproduce only with IE8 > (Windows XP). I use a TabPanel with IFrames in the tabs. When I close > a tab which has an element with focus no TextBox in other tabs can > take the focus by mouse clicking (but only by Tab-Key). If the closed >

Re: Compiling for IE8

2013-01-17 Thread Thomas Broyer
On Wednesday, January 16, 2013 7:04:15 PM UTC+1, Borys Zibrov wrote: > > Hi, all! > > I've got a fairly complex RIA application involving GWT 2.5 and GXT 3.0.1, > and I noticed that changing compiler flags (like optimization level) > doesn't improve (and even degrad

Compiling for IE8

2013-01-16 Thread Borys Zibrov
Hi, all! I've got a fairly complex RIA application involving GWT 2.5 and GXT 3.0.1, and I noticed that changing compiler flags (like optimization level) doesn't improve (and even degrades) performance in IE8. So, could anyone help me out: what are the best compiler settings for perf

Re: exception with Property Position on IE8

2013-01-16 Thread Thomas Broyer
I'd say there's a bug in Properties.create() where it "parses" your argument to "position: 0.0px". You might want to ask on http://groups.google.com/group/gwtquery (I suppose this is GwtQuery code) On Wednesday, January 16, 2013 6:45:18 PM UTC+1, Deepak Singh wrote: > > Hi, > > I have following

Re: No Textbox can take the focus by mouse clicking in IE8

2013-01-03 Thread Daniel Girtler
ote: >> >> I have a problem in GWT 2.0.4 that I can reproduce only with IE8 >> (Windows XP). I use a TabPanel with IFrames in the tabs. When I close >> a tab which has an element with focus no TextBox in other tabs can >> take the focus by mouse clicking (but only

Invoking JS method from in GWT is giving error in IE7 but working fine in IE8 and Mozilla

2013-01-01 Thread kapilarora . eca
Hi, I have developed an application where i need to read the JS method from GWT java file. Application is properly fetching the data from JS method in IE8 and Mozilla browsers but the same is giving an error in lower version of IE i.e., IE7. Request you all to please let me know the issues

Re: if DialogBox is shown, debug window in IE8 or FF13 cannot be shown.

2012-12-20 Thread Thomas Broyer
On Thursday, December 20, 2012 4:49:57 AM UTC+1, tong123123 wrote: > > the behavior is quite strange, in normal condition, if press F12 in IE8 or > FF13, a debug window will be shown. > But if DialogBox is shown (Dialog.center()), then even press F12, the > debug window cannot

if DialogBox is shown, debug window in IE8 or FF13 cannot be shown.

2012-12-19 Thread tong123123
the behavior is quite strange, in normal condition, if press F12 in IE8 or FF13, a debug window will be shown. But if DialogBox is shown (Dialog.center()), then even press F12, the debug window cannot be shown. why will this happen? -- You received this message because you are subscribed to

DataGrid header style has problem in IE8

2012-12-04 Thread Thomas Broyer
You'll have to apply the style not only to the thead but also the th it contains. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/6NoTJJobdIIJ.

Cannot use compiler.emulatedStack=true with IE8; will get javascript running slow alert dialog.

2012-11-27 Thread Neil Buesing
GWT: 2.4.0 OS: Windows 7 (64 Bit) Browser: Internet Explorer 8 (8.0.7601.17514) [Update Versions : 0] If we enable compiler.emulatedStack in our .gwt.xml file (so we can get useful stack trackes outside of development) our users get prompted with the alert box asking them if they want to stop t

Re: IE8 Elemental support...

2012-11-20 Thread emurmur
See the thread at the end of this blog post. Quick answer: Elemental support modern browsers, not IE8 or below, but GWT core libs can be used to program the browser at a low-level and still get IE8 support. http://lumpofcode.blogspot.com/2012/11/configuring-gwt-codeserver-and.html Ed On Nov

IE8 Elemental support...

2012-11-19 Thread Felipe Gasparino
Hi All, I'm experimenting Elemental, and the library sounds pretty cool. I got a huge increase in performance. However, the IE8 is no longer working. Does anybody know if Elemental supports ie8 ? Or if not, any workaround to suggest? Thanks! -- You received this message because yo

StockWatcher tutorial & IE8

2012-10-24 Thread Сергей Захаров
I read the "Retrieving JSON Data" tutorial ( https://developers.google.com/web-toolkit/doc/latest/tutorial/JSON ) However, the FlexTable widget isn't updated each 5 seconds (only after delete or add new stock) in IE8. In Chrome everything works perfectly. Can you explain why or g

textbox focus is not working as expected on IE8

2012-10-08 Thread Miroslav Genov
Hello, It seems that focus is not working as expected on IE8. Does anyone has an idea why FocusImpl is using FocusImplIE6 when ie8 when FocusImplStandard seens more reasonable as described in: http://stackoverflow.com/questions/1326993/jquery-focus-sometimes-not-working-in-ie8 -- You

Re: page completely fails to load on ie8, works on safari, firefox, chrome, ie9

2012-10-03 Thread tuxcode
Actually when I encountered the same behavior the issue was setting height to 100% on a panel. On Wednesday, October 3, 2012 12:03:59 PM UTC-4, tuxcode wrote: > > I ran into this exact issue where I was setting a cell's height to "100%". > Every other browser was fine with it but IE. I don't kno

Re: page completely fails to load on ie8, works on safari, firefox, chrome, ie9

2012-10-03 Thread tuxcode
I ran into this exact issue where I was setting a cell's height to "100%". Every other browser was fine with it but IE. I don't know if this is your issue or not. On Tuesday, October 2, 2012 8:05:22 PM UTC-4, jones34 wrote: > > There's a good chance this is not gwt-related, but if anyone has run

Re: page completely fails to load on ie8, works on safari, firefox, chrome, ie9

2012-10-03 Thread Jens
Do any script errors occur in IE? If so, you could compile your app in PRETTY mode and use IE's development tools to see whats going on. -- J. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit htt

Re: page completely fails to load on ie8, works on safari, firefox, chrome, ie9

2012-10-03 Thread Larry White
On Wed, Oct 3, 2012 at 8:34 AM, Jens wrote: > Do you have Chrome Frame installed? Is IE8 maybe in compatibility mode? No, it's failing on ancient computers (windows XP) that don't have chrome installed. IE8 is not in compatibility mode. thanks. > > -- J. > > Am Mit

Re: page completely fails to load on ie8, works on safari, firefox, chrome, ie9

2012-10-03 Thread Jens
Do you have Chrome Frame installed? Is IE8 maybe in compatibility mode? -- J. Am Mittwoch, 3. Oktober 2012 02:05:22 UTC+2 schrieb jones34: > > There's a good chance this is not gwt-related, but if anyone has run into > this and has any quick suggestions it would be great

page completely fails to load on ie8, works on safari, firefox, chrome, ie9

2012-10-02 Thread jones34
There's a good chance this is not gwt-related, but if anyone has run into this and has any quick suggestions it would be greatly appreciated. thanks much. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web

Re: GWT file download & IFrames & IE8

2012-09-25 Thread Mike Azzi
Hi Thomas, I am running into the same problem and I didn't quite understand your suggestion. Was it meant to prevent showing iE8 security warning yellow bar, or the reloading of the page? Would you mind elaborating a bit more. Thanks, Mike On Friday, January 13, 2012 9:20:30 AM UTC-5, T

Re: Large memory leak in IE8 when GWT runs on a new Window

2012-09-13 Thread stuckagain
XT code. > Navigating to and away from pages containing GWT code does not show > any significant memory leaks in IE8. > > Now some of our screens pop up a new Window running complex GXT code. > In those applications the top GWT-generated code attaches to the > RootPanel

Problem in downloading & installing Google Web Toolkit Developer Plugin in IE8.

2012-09-12 Thread satheesh1988
HI Folks, I'm using Internet Explorer8. I couldn't use the *Google Web Toolkit Developer Plugin*. It displays that it requires the *Google Web Toolkit Developer Plugin* but when it try to download the *plugin* which is suggested by IE. I see the 404 Error. Advanced Thanks,

Do not work CheckboxCell event at IE8.

2012-09-12 Thread JaeSeung Lee
hi, all~~ I use DataGrid in my project. And DataGrid has CheckboxCell. This is work well at Chrome. But not work at IE8. At IE8, CheckboxCell don't receive event. ( If install 'Chrome Frame', this problem is clear. But our environment Don't use 'Chrome Frame' )

CheckboxCell have some problem at ie8

2012-09-12 Thread JaeSeung Lee
hi, all~~ I have some problem with checkbox. My project has DataGrid. And It has CheckboxCell in Column. Chrome Browser work very well. But IE8 Browser has some promblem. in IE8, CheckboxCell don't receive event. (If install Chrome Frame, it work vert well... But I Don't use it

Re: SmartScreen Filter performance issue in IE8

2012-08-30 Thread KamBha
Hi, For anyone who is interested, we got to the bottom of the problem. It is a combination of having smart screen filter on, the afore mentioned line and having a reference like this in your CSS:- img.iefix { behavior: url(*iefix*.*htc*); } But missing the .htc file on the server. When we

SmartScreen Filter performance issue in IE8

2012-08-28 Thread KamBha
Hi, In IE8, our GWT application seems to suffer significant slowdown when we have slow PCs and smart screen filter on. Profiling the code, it looks like the problem is with com.google.gwt.user.client.impl.DOMImpl.setEventListener. We are generating a very large amount of HTML when we assign

Re: No Textbox can take the focus by mouse clicking in IE8

2012-08-02 Thread Patrick Duffy
Has there been a resolution to this problem. Still happening in gwt 2.4 On Tuesday, January 25, 2011 3:56:16 AM UTC-5, AlexF wrote: > > I have a problem in GWT 2.0.4 that I can reproduce only with IE8 > (Windows XP). I use a TabPanel with IFrames in the tabs. When I close > a tab

Re: querySelectorAll IE8

2012-07-31 Thread Mohit
> There is a typo in GWT native code in my earlier post. Please refer the > method below: *GWT Native Code: *private static native NodeList nativeQuery(Element root, String query)/*-{ return root.querySelectorAll(query); }-*/ I am using GWT 2.3 Thanks, Mohit -- You received this m

querySelectorAll IE8

2012-07-31 Thread Mohit
Hey guys, I am facing a strange problem related to CSS query selector in IE8. I am using standard HTML Doctype. *Sample HTML:* The container div is a HTMLPanel. *GWT Native Code: *private static native NodeList nativeQuery(Element root, String query)/*-{ var root = obj || $doc

Re: com.google.gwt.user.client.rpc.StatusCodeException: 12002 exception in IE8 (not Chrome or FF)

2012-07-16 Thread Wandile Chamane
ing works as expected but in IE8 after a seemingly random amount of > time the calls start to fail with one of two errors: > > com.google.gwt.user.client.rpc.StatusCodeException: 12002 > com.google.gwt.user.client.rpc.StatusCodeException: 12031 > > 12002 is apparently an ERROR

Re: Layout great difference between IE8 and FF13 after using window.getClientWidth() and window.getClientHeight()

2012-07-10 Thread tong123123
After add the "px" unit, FF can show the image correctly. image1.setSize(String.valueOf(clientWidth * 0.1) + "px", > String.valueOf(clientHeight * 0.1) + "px"); > -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion

gwt doesn't recognize my ie8 BUT only in remote server?

2012-07-08 Thread Elhanan
hi.. i too have stumbled on the problem of the error of "possible problems with your module file.." however this doesn't happen when i run my app in my tomcat and access in localhost, only when i run on websphere, developer machine. -- You received this message because you are subscribed to th

Re: download gwt developer plugin for ie8 link broken

2012-06-16 Thread Joseph Lust
Amateur hour at Google again? It cannot be good for the GWT community and joiners if every several weeks Google's servers crash again. This has even affected us at my office twice when their Eclipse update sites are down and we're bringing new dev's onboard. Sure, we can stash lost of the libs

download gwt developer plugin for ie8 link broken

2012-06-14 Thread aviad shifman
when i try to install the developer plugin it tells me the link is broken -- 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, send email

Re: IE8 memory leak

2012-06-13 Thread Daniel Kurka
17, 10:41 pm, Akash Gupta wrote: >> Do you use any third party library ? >> >> >> >> >> >> >> >> On Wed, May 16, 2012 at 7:20 PM, sylvanco wrote: >> >>> I work on an intranet GWT application that is consuming mem

Can not install the Google Web Toolkit Developer plugin in IE8

2012-05-30 Thread Bin Gong
Hi I started the GWT's development mode server as debug mode, and IE8 prompted to request plugin install. But the installation failed with 404 error! How to install the plugin for IE8? can not find any instructions on that -- You received this message because you are subscribed t

Re: IE8 memory leak

2012-05-26 Thread sylvanco
No 3rd pary libraries, just the frameworks listed. On May 17, 10:41 pm, Akash Gupta wrote: > Do you use any third party library ? > > > > > > > > On Wed, May 16, 2012 at 7:20 PM, sylvanco wrote: > > > I work on an intranet GWT application that is consuming m

Re: Local storage doesn't work with ie8 in gwt 2.4

2012-05-23 Thread Олег Полторацкий
If you want to force IE8-super-standards mode (even when the user has "compatibility mode" set), add the following meta tag: http://code.google.com/p/google-web-toolkit/wiki/IE8Support#Deferred_Binding On Sunday, October 9, 2011 8:16:34 PM UTC+4, haluk wrote: > > I kn

Re: IE8 memory leak

2012-05-17 Thread Akash Gupta
Do you use any third party library ? On Wed, May 16, 2012 at 7:20 PM, sylvanco wrote: > > I work on an intranet GWT application that is consuming memory with > IE8 but not in Chrome or IE9. Due to OS and ActiveX technologies, > browsers other than IE8 are not a deployment opt

IE8 memory leak

2012-05-17 Thread sylvanco
I work on an intranet GWT application that is consuming memory with IE8 but not in Chrome or IE9. Due to OS and ActiveX technologies, browsers other than IE8 are not a deployment option for this intranet application but other browsers have been used as troubleshooting tools. The application

vertical scroll problem with IE7 and IE8

2012-05-17 Thread raviraj
Hi all, I am facing problem with vertical scroll problem with IE7 and IE8 . When i update the date with GWT date picker in the bottom of the page,The scroll bar automatically jumps to top of the page.IT is working fine in IE9 and other browsers. Please help..me Urgent,, Thanks you

Re: No Textbox can take the focus by mouse clicking in IE8

2012-05-11 Thread Samyem Tuladhar
Any solution to this since it was posted more than a year ago? I am running into the exact same issue. On Wednesday, February 2, 2011 9:03:39 AM UTC-5, AlexF wrote: > > I posted all details with an example here: > http://code.google.com/p/google-web-toolkit/issues/detail?id=5968 -- You receive

Re: IE8 is showing script is unresponsive, any known fixes that can be easily applied

2012-05-01 Thread skippy
http://groups.google.com/group/google-chrome-frame On Apr 27, 8:55 am, Kishan wrote: > Frequently we are getting script is unresponsive in IE8, is any known > fixes that can be easily applied. That will be helpful. > > Thanks, > Balakishan -- You received this message because you a

IE8 is showing script is unresponsive, any known fixes that can be easily applied

2012-04-30 Thread Kishan
Frequently we are getting script is unresponsive in IE8, is any known fixes that can be easily applied. That will be helpful. Thanks, Balakishan -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email

Re: IE8 getUserAgent returns Safari

2012-04-12 Thread skippy
rote: > > > > > Probably Chrome Frame installed in IE? > > >http://www.chromium.org/developers/how-tos/chrome-frame-getting-start... > > > -- J. > > > Am Donnerstag, 12. April 2012 20:13:49 UTC+2 schrieb skippy: > > > > I am trying to remove functions th

  1   2   3   4   5   >