Re: com.google.gwt.core.client.JavaScriptException: (Error) description: Out of Memory number: -2146828281 __gwt$exception: : Out of memory Can anyone help me fix this error? I am using

2017-01-20 Thread Jens
You might want to use IE 11 developer tools to see memory consumption and if it keeps growing the longer you use your app. I don't think anyone can help here, you have to analyze your app in IE 11. -- J. -- You received this message because you are subscribed to the Google Groups "GWT Users"

Re: SuggestBox in DataGrid?

2017-01-20 Thread Frank
Maybe it is all possible but not easy. That is the main reason we developed in an inhouse grid. Not enough capabilities for the datagrid, or to difficult to achieve certain things. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe

mobile device detect and back button detect

2017-01-20 Thread David
In GWT, how do I detect mobile devices to get whether or not it is a Apple phone or Android phone. I also need to detect back button once uses click it. Now I used MGWT (version 2) to detect it. It doesn't work well. Thanks, David -- You received this message because you are subscribed to

Re: SuggestBox in DataGrid?

2017-01-20 Thread Rocco De Angelis
Hi Hal Maner, the DataGrid in GWT doesn't allow you to add a widget into a cell. You have to implement your own cell renderer. For performance reason you can only use the SafeHtmlBuilder that you get pass in the render method. So you can try to add an widget into the cell after an interaction

SuggestBox in DataGrid?

2017-01-20 Thread H Maner
Hello everyone, Has anyone been able to successfully use a SuggestBox in a DataGrid? If so, how did you do it? GWT 2.6.1, soon upgrading to 2.8 (thank you!). Thank you, Hal Maner -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe

Re: com.google.gwt.core.client.JavaScriptException: (Error) description: Out of Memory number: -2146828281 __gwt$exception: : Out of memory Can anyone help me fix this error? I am using

2017-01-20 Thread Frank
I think a little bit more information would be usefull. When does this error appear ? While compiling, while running code ? What code ? -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from

Re: SuggestBox in DataGrid?

2017-01-20 Thread Rogelio Flores
If I needed a SuggestBox-like widget in a cell, I would implement my own CellWidget. This would require that you basically re-implement the whole widget using the custom-cell approach. Not trivial like simply adding the already made SuggestBox, but it will perform nicely like cell-based widgets

Re: mobile device detect and back button detect

2017-01-20 Thread harshyadav
To detect browsers/devices, the below works: private static boolean IS_ANDROID; private static boolean IS_IOS; private static boolean IS_HANDHELD; private static boolean IS_FIREFOX; private static String VIDEO_EXTENSION = "_me.mp4"; private static String DEFAULT_IMAGE_DIRECTORY = ""; static {

Re: com.google.gwt.core.client.JavaScriptException: (Error) description: Out of Memory number: -2146828281 __gwt$exception: : Out of memory Can anyone help me fix this error? I am using

2017-01-20 Thread Pam Coffey
This is occurring on a Web Client Application we use to run jobs. It seems to occur when the App is not logged out of for long periods of time. On Friday, January 20, 2017 at 6:56:58 AM UTC-5, Frank wrote: > > I think a little bit more information would be usefull. > > When does this error