Re: CellTable Memory Leak in IE8

2015-08-13 Thread Dave Chapman
(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 TableSection is replaced in the DOM, IE8

Re: CellTable Memory Leak in IE8

2015-08-12 Thread Harvard Pan
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 one row

Re: CellTable Memory Leak in IE8

2015-08-05 Thread Harvard Pan
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 you said - set row.innerHTML to null. I took a copy of AbstractCellTable (including

Re: CellTable Memory Leak in IE8

2015-08-05 Thread DaveC
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 you said - set row.innerHTML to null. I took a copy of AbstractCellTable (including the package structure) and placed it in my test project. In the ImplTrident

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 what you said - set

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: [gwt-contrib] Re: Dropping IE8 support in useragent-less GWT

2014-07-24 Thread Alain Ekambi
@Colin. We do target Titanium Mobile. Wich dont have any noting of DOM or UserAgent related stuff. We also have a GWT binding for DevKit ( http://docs.gameclosure.com/). Right now we have to write some patches just to get rid(override) the the UserAgent/DOM related stuff. And that on each GWT

Re: [gwt-contrib] Re: Dropping IE8 support in useragent-less GWT

2014-07-23 Thread James Nelson
Just to toss in another use case... I develop a cross-platform java library that exposes generic apis that run on multiple platforms; each module inherits the minimum possible dependencies, and all platform-specific code is isolated from shared APIs. I never touch anything in User unless I

Re: [gwt-contrib] Re: Dropping IE8 support in useragent-less GWT

2014-07-18 Thread Colin Alworth
I think Alain's use case is a legit one, and the SmartGWT product probably also lives in that world to an extent - let the user write Java that mostly interacts with JS libraries, and let them worry about which browser is running, but compile the code to run anywhere. I can't speak to their 'older

Re: [gwt-contrib] Re: Dropping IE8 support in useragent-less GWT

2014-07-17 Thread 'Brian Slesinsky' via GWT Contributors
It would make sense in principle but we don't know anyone who wants to target older browsers without also using permutations. On Tue, Jul 15, 2014 at 3:55 AM, Jens jens.nehlme...@gmail.com wrote: I believe Google builds applications that use Elemental and/or JsInterop, so they don't use

Re: [gwt-contrib] Re: Dropping IE8 support in useragent-less GWT

2014-07-15 Thread 'Goktug Gokdogan' via GWT Contributors
are not really dropping support; just changing the defaults when useragent is not available. Currently IE8 was good enough to get the benefit I was looking for (i.e Object.create(null)) but I think we can simply bump up the minimum version to IE10 if there are other good benefits. I think it is fair to require

Re: [gwt-contrib] Re: Dropping IE8 support in useragent-less GWT

2014-07-15 Thread Jens
BTW, with Core, I mean literally com.google.gwt.core.Core (which includes the java.lang.emul as well) and we are not really dropping support; just changing the defaults when useragent is not available. Currently IE8 was good enough to get the benefit I was looking for (i.e Object.create

Re: [gwt-contrib] Re: Dropping IE8 support in useragent-less GWT

2014-07-15 Thread Alain Ekambi
: BTW, with Core, I mean literally com.google.gwt.core.Core (which includes the java.lang.emul as well) and we are not really dropping support; just changing the defaults when useragent is not available. Currently IE8 was good enough to get the benefit I was looking for (i.e Object.create(null

Re: [gwt-contrib] Re: Dropping IE8 support in useragent-less GWT

2014-07-15 Thread Thomas Broyer
On Tuesday, July 15, 2014 10:54:04 AM UTC+2, Jens wrote: BTW, with Core, I mean literally com.google.gwt.core.Core (which includes the java.lang.emul as well) and we are not really dropping support; just changing the defaults when useragent is not available. Currently IE8 was good enough

Re: [gwt-contrib] Re: Dropping IE8 support in useragent-less GWT

2014-07-15 Thread Jens
I believe Google builds applications that use Elemental and/or JsInterop, so they don't use c.g.g.dom.DOM or any other thing that inherits UserAgent. Goktug also pointed out earlier in this thread cross-compiled apps where the UI is built with Closure Library. I suspect this might be the

Re: [gwt-contrib] Re: Dropping IE8 support in useragent-less GWT

2014-07-14 Thread Colin Alworth
the perspective of huh, Goktug wants to drop IE8 because it will make *something* easier - won't also dropping IE9 make more something even more easier?. With the caveat that all you are interested in is Object.create, targeting only IE8 makes sense. On Tuesday, July 1, 2014 12:02:50 AM UTC-5

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 weeks and made some

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

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 browser event loop

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

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

2014-07-10 Thread Jens
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 while in DevMode your Java code is executed inside your JVM

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

2014-07-10 Thread Corey Bishop
, 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 compiling that javascript on the fly from the java code. What's

Re: DataGrid header style has problem in IE8

2014-07-09 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 attachment, in IE8, in datagrid

[gwt-contrib] Dropping IE8 support in useragent-less GWT

2014-06-30 Thread 'Goktug Gokdogan' via GWT Contributors
We are planning to drop support for IE8 if the application doesn't inherit c.g.gwt.useragent.UserAgent and hence not have browser permutations. Nearly all of today's apps inherit User so they will not be affected by this change. In the future more apps will only inherit Core however

[gwt-contrib] Re: Dropping IE8 support in useragent-less GWT

2014-06-30 Thread Colin Alworth
'. And besides, I can't always be That Guy pushing to keep all versions forever, just because IE8 is still 11% of North America's browser usage (really: http://theie8countdown.com/). If we're cutting a browser for being old/bad/whatever in Core, but leaving support for it still in User, we should consider

Re: [gwt-contrib] Re: Dropping IE8 support in useragent-less GWT

2014-06-30 Thread 'Goktug Gokdogan' via GWT Contributors
pointed IE8 as it is the only supported browser missing Object.create functionality and such apps that just depends on java.emul are paying the price of IE8. On the other hand by just inheriting useragent.UserAgent (not necessarily the User) an app can target older browsers. Dan definitely has

Re: blank page and mystic error in IE8

2014-06-04 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 alpineblas...@gmail.com wrote: Wait, something has changed!

Re: blank page and mystic error in IE8

2014-06-04 Thread Magnus
of 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-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 OS. Basically

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-03 Thread Magnus
Wait, something has changed! https://lh4.googleusercontent.com/-WGV3W2sG_6k/U46ntNmZP0I/AIY/HPGhA1C3fS0/s1600/error.png 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

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

Re: blank page and mystic error in IE8

2014-05-31 Thread Magnus
Hi, I keep getting this error: https://lh5.googleusercontent.com/-7OEiCSdImKQ/U4pTPjuoFgI/AIE/KB5w1baFCYo/s1600/error.png 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

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 should

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

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 !DOCTYPE html in your html page so you are not in

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 Fehler auf der

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 modifying

SimplePager buttons missing on IE8

2013-08-07 Thread Mark Wengranowski
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 anymore either

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 Toolkit group

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: 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
and then set 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 Table cell, we use

Re: IE8 enormous memory consumption

2013-05-16 Thread Marteijn Nouwens
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 stable and didn't increase overnight. I'm at a loss where to start, and how

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 lot of memory in IE8. GWT

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

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 main

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

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 for the memory

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't

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

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 indefinitely. Hence, I

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 Google

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 issues? As long

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. !-- Mask error message -- set-configuration-property name=user.agent.runtimeWarning value=false/ On Monday, March 4, 2013 8:52:27 AM UTC-5, ram wrote: Thanks for the reply. You're right, the browser Chrome

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. !-- Mask error message -- set-configuration-property name=user.agent.runtimeWarning value=false/ On Monday

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: meta name=gwt:onLoadErrorFn content=myAccountOnLoadErrorFn / script language='javascript' function myAccountOnLoadErrorFn(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
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 have a GWT application that work fine under IE8, and crash in another PC

Re: Compiling for IE8

2013-01-30 Thread Luca Morettoni
) 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 have a GWT application that work fine under IE8, and crash in another PC with the same version of IE and O.S. The problem comes when

Re: Compiling for IE8

2013-01-30 Thread Thomas Broyer
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 performance

Re: Compiling for IE8

2013-01-30 Thread Colin Alworth
...@gmail.com 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. So, could anyone help me out: what are the best compiler

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 style tags to the page, and mess up StyleInjectorImplIE's assumption that no one else is spitting out style elements. SnagIt used to (and may still) cause exceptions in various

Re: Compiling for IE8

2013-01-29 Thread Luca Morettoni
On Thu, Jan 17, 2013 at 9:08 AM, Thomas Broyer t.bro...@gmail.com 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. So, could anyone help

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

2013-01-21 Thread Alex Ph
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 tab did not have a focused element the problem does

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 degrades) performance in IE8. So, could

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 code

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 performance

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

2013-01-03 Thread Daniel Girtler
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 tab did not have a focused

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 be shown. why

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

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

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 you

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 give me the link

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 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 greatly appreciated. thanks

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 jens.nehlme...@gmail.com 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 Mittwoch

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

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 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 know if

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, Thomas

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

2012-09-13 Thread stuckagain
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. Closing the window associated with such an application leaks

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. Our user

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' ) How can I resolve this problem

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

Re: SmartScreen Filter performance issue in IE8

2012-08-31 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 which has

querySelectorAll IE8

2012-08-01 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:* div id=container input id=field type=text / /div The container div is a HTMLPanel. *GWT Native Code: *private static native NodeListElement nativeQuery(Element

Re: querySelectorAll IE8

2012-08-01 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 NodeListElement nativeQuery(Element root, String query)/*-{ return root.querySelectorAll(query); }-*/ I am using GWT 2.3 Thanks, Mohit -- You received

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

2012-07-16 Thread Wandile Chamane
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_INTERNET_TIMEOUT and 12031

[gwt-contrib] IE8 32k data:url bugfix (issue1778803)

2012-07-14 Thread t . broyer
/google/gwt/resources/Resources.gwt.xml:76: !-- IE8 has some limitiations on inlining data: URLs -- Just to make sure: this is only in IE8, not in IE9? http://gwt-code-reviews.appspot.com/1778803/diff/1/user/src/com/google/gwt/resources/rebind/context/InlineClientBundleGeneratorIE8.java File user

[gwt-contrib] Re: IE8 32k data:url bugfix (issue1778803)

2012-07-14 Thread jat
creating the InlineResourceContext, and InlineClientBundleGeneratorIE8 wouldn't have to override createResourceContext. An alternative would be to use a deferred-binding property instead of a hard-coded constant, and use set-property ...when-property-is name=user.agent value=ie8 //set-property

[gwt-contrib] Re: IE8 32k data:url bugfix (issue1778803)

2012-07-14 Thread t . broyer
http://gwt-code-reviews.appspot.com/1778803/diff/1/user/src/com/google/gwt/resources/rebind/context/InlineClientBundleGeneratorIE8.java File user/src/com/google/gwt/resources/rebind/context/InlineClientBundleGeneratorIE8.java (right):

  1   2   3   4   5   6   >