Re: GWT Cross Site Iframe Linker and Script Tags

2014-07-16 Thread gabriele.prandini
This problem is blocking me from use superdevmode i have many 3th library, also gwt-ext... and gwt-ext have some script tag on his gwt.xml so sad :-( Il giorno lunedì 12 novembre 2012 17:54:58 UTC+1, Thomas Broyer ha scritto: On Monday, November 12, 2012 4:55:58 PM UTC+1, googelybear wrote:

Re: WARNING: Could not open/create prefs root node Software\JavaSoft\Prefs at root 0x80000002. Windows RegCreateKeyEx(...) returned error code 5.

2014-07-16 Thread Daniel Beckwith
So is this an actual bug in the Java API? That IBM link seems to suggest that: The error occurs because java.util.prefs.WindowsPreferences is trying to save information in HKEY_LOCAL_MACHINE\Software\JavaSoft\Prefs instead of under HKEY_CURRENT_USER\Software\JavaSoft\Prefs. On Saturday, June

Re: The First-Time loading issue of a deployed GWT app?

2014-07-16 Thread Thomas Broyer
On Tuesday, July 15, 2014 7:12:06 PM UTC+2, Tom wrote: Thank you very much Thomas, so putting the that *js script../script* inside the *body *will NOT cause any later problems right? But can we have a more professional way to solve the problem? Can we use Code Splitting in the

Re: Devmode with GWT 2.6.1 - [ERROR] 503 - GET /Quant.html?gwt.codesvr=127.0.0.1:9997 (127.0.0.1) 1299 bytes

2014-07-16 Thread Thomas Broyer
What's your setup? Do you have a jetty-web.xml to configure a LoginService or realm? Note that 2.6 updated Jetty from version 6 to 8, which changes the packages from org.mortbay.jetty to org.eclipse.jetty and breaks backwards compatibility in many other ways (AFAICT, Jetty couldn't even

Re: GWT Cross Site Iframe Linker and Script Tags

2014-07-16 Thread Thomas Broyer
On Wednesday, July 16, 2014 11:06:43 AM UTC+2, gabriele.prandini wrote: This problem is blocking me from use superdevmode i have many 3th library, also gwt-ext... and gwt-ext have some script tag on his gwt.xml so sad :-( As the error message says: add set-configuration-property

Re: GWT JS Interopt

2014-07-16 Thread Eder Ignatowicz
Yep! Thanks for your help! :) What does the trick is the flag -XjsInteropMode JS . If anyone want to use my GWT JS interop demo is on https://github.com/ederign/gwt-playground. Obrigado _ Eder Ignatowicz ignatow...@gmail.com 2014-07-15 0:47 GMT-03:00 田传武 i...@goodow.com:

Re: How to make SuggestBox display scroll properly?

2014-07-16 Thread Julien Dramaix
Or use GwtQuery. It helps you to query dom elements of a widget and modify them. On Tuesday, July 15, 2014 6:28:30 PM UTC+2, Andy wrote: To be more specific, once you provide access to the MenuBar in your subclass via something like: public native MenuBar getPrivateMenuBar() /*-{

Re: Devmode with GWT 2.6.1 - [ERROR] 503 - GET /Quant.html?gwt.codesvr=127.0.0.1:9997 (127.0.0.1) 1299 bytes

2014-07-16 Thread Mo Baig
No, we do not have jetty-web.xml to configure a LoginService. We have a realm defined in web.xml login-config auth-methodFORM/auth-method realm-namenaaSecurityRealm/realm-name form-login-config form-login-page/jsp/nqb/login.jsp/form-login-page

Re: Devmode with GWT 2.6.1 - [ERROR] 503 - GET /Quant.html?gwt.codesvr=127.0.0.1:9997 (127.0.0.1) 1299 bytes

2014-07-16 Thread Thomas Broyer
On Wednesday, July 16, 2014 3:31:04 PM UTC+2, Mo Baig wrote: No, we do not have jetty-web.xml to configure a LoginService. I wonder how it even worked before then… We have a realm defined in web.xml login-config auth-methodFORM/auth-method realm-namenaaSecurityRealm/realm-name

Re: The First-Time loading issue of a deployed GWT app?

2014-07-16 Thread Andy Stevko
Tom, you can design a static page index.html that will give your users enough info to want to wait for the dynamic pages to load and replace it. Advanced JSers often put the script tag at the end of the body for exactly your scenario. Code splitting may help with your initial app load delay. I

More powerful GWT Grid / Using SmartGWT Widgets

2014-07-16 Thread feuse8
Hi, I'm currently building an enterprise application that should provide Excel Like Tables. I would like to customize cells and have some other features GWT provided Tables/Grids/CellTables/DataGrids don't provide: - fixed headers and columns - sortable headers - filtering in headers

Re: More powerful GWT Grid / Using SmartGWT Widgets

2014-07-16 Thread Alain Ekambi
Smart GWT widgets have the reputation to not play well with GWT ones. But I cant tell how bad that is. I never used it. We use a GWT binding for Ext JS and we manage to make them play well with GWT. Ext JS comes with a really powerful grid component. You can a demo here :

DateBox incorrect time past certain dates

2014-07-16 Thread William Davis
I have run across a rather annoying issue, I have been looking for others with similar problems but cannot seem to narrow it down to a solution that will work for me. The following problem has to do with getting the date from a DateBox. First of all, I always get the right date and timezone

Re: DateBox incorrect time past certain dates

2014-07-16 Thread Jens
You are not alone ;-) Basically daylight saving information can be different between browsers and different between browsers and JVM (like in DevMode). These differences exist because they probably all use different timezone databases (or the same database but in different versions of it).