SuperDevMode & java long value in debugger

2016-02-03 Thread Jack Thompson
Hello, In SuperDevMode browser JS debugger console shows long values as JS object having properties l,h and m. Is there any convenient way to get the actual long value instead of having to use GWT.log in the actual java source? -- You received this message because you are subscribed to the G

Re: What to do when GWT finds no permutation for browser

2014-09-17 Thread Jack Thompson
Thanks for the help! Until GWT 2.7 arrives I've added undefined.nocache.js to display a message to the user :) -- 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 emai

What to do when GWT finds no permutation for browser

2014-09-16 Thread Jack Thompson
What would be the best way to handle situation where GWT bootstrap code does not find a suitable permutation for the browser (Opera Mini for example)? By default the user gets a blank html page when this happens. -- You received this message because you are subscribed to the Google Groups "Goo

Re: DialogBox centering with UiBinder & DataGrid programmatic sorting

2014-08-19 Thread Jack Thompson
> Further testing revealed that a dialog shown that way cannot be closed in > IE11 if the call to hide comes in context of RestyGWT's MethodCallback > event. The dialog thinks it's not visible (isShowing returns false). But if > add a button to the dialog to close it, that works. > Needed a

Re: DialogBox centering with UiBinder & DataGrid programmatic sorting

2014-08-19 Thread Jack Thompson
> On Friday, 1 August 2014 16:22:04 UTC+3, Juan Pablo Gardella wrote: >> >> About center the dialog. Call the center method using scheduleDeferred >>

Re: DialogBox centering with UiBinder & DataGrid programmatic sorting

2014-08-19 Thread Jack Thompson
Ah, that work, thanks! On Friday, 1 August 2014 16:22:04 UTC+3, Juan Pablo Gardella wrote: > > About center the dialog. Call the center method using scheduleDeferred >

DialogBox centering with UiBinder & DataGrid programmatic sorting

2014-08-01 Thread Jack Thompson
Hello, I have a dialog class inherited from DialogBox and using UiBinder template as the widget for it, which is set in the constructor setWidget(uiBinder.createAndBindUi(this)). When the a dialog class instance is shown using the center() method, the dialog is shown but it is not properly cen

Re: SuperDevMode & external server

2014-07-31 Thread Jack Thompson
After a lot of trial and error we managed to configure our JBoss web server to talk to browsers with the proper CORS headers so that we got REST operations working by running the GWT app locally under Jetty. -- You received this message because you are subscribed to the Google Groups "Google W

Re: SuperDevMode & external server

2014-07-30 Thread Jack Thompson
Yes but it doesn't seem to have any effect. But if it was required there should be something like Ignoring non-whitelisted Dev Mode URL: http://some.domain.com/ in the browser's JS console which I have not seen. -- You received this message because you are subscribed to the Google Groups "Go

SuperDevMode & external server

2014-07-30 Thread Jack Thompson
Hello, Our GWT app does REST operations with the web server that's hosting it. The server uses HTTP-Basic authentication for the REST operations. In production mode this naturally poses no problems. However in GWT development mode the issues of cross domain restrictions (CORS) come into play.

Security for new GWT web application

2014-06-24 Thread Jack Thompson
Hello, The company where I work is starting a new family of web applications and have decided to use GWT on the client side. In the matter of security I've conducted a review of GWT XSS/XSRF best practices and I'd like to confirm my assumptions. For communication with our server we will be usi