Re: Spring Security and Google App Engine

2013-05-24 Thread Joey Wilkinson
Found the solution from Huseyin OZVEREN: Simply replace .html files to .jsp Refer to: http://www.javablog.fr/springgwtgae-spring-security-on-google-cloud-jetty-tomcat.html#comment-165 For full description of solution -- You received this message because you are subscribed to the Google

Re: Spring Security and Google App Engine

2013-05-23 Thread Joey Wilkinson
I'm having the same issue with my GWT web application. issue still happens with the default GWT GAE sample project and basic spring security setup. http auto-config=true intercept-url pattern=/** access=ROLE_USER / /http Has anyone else experienced this kind of issue? or has found a

Anyone work on the AOP for the GWT before?

2013-01-21 Thread Joey Ye
Hi guys, Spring AOP is good thing for you to do the log method without adding coding to you application. I want to use the Spring AOP for the GWT, but the AOP can not advise the my class (extends com.google.gwt.user.server.rpc.RemoteServiceServlet) methods. It

how to write a 2D game by using GWT and html5.

2012-08-28 Thread Joey
I want to write a simple animated 2D game by using GWT and HTML5. The game basically needs to keep running several animations all the time, but I do not know what libraries or techniques I should use to achieve this. Based on my experience in GWT so far, I know I can just use plain GWT and

ValueChangeEvent String is not fired in IE9

2012-08-17 Thread Joey Li
I tried to add a ValueChangeHandler to textbox. In IE 9, I found that the event is not fired at all. But it works fine in Chrome and FF. I google it and some said the changeHandler event is not fired as well. Anyone has workaround for it? Thanks. -- You received this message because you are

Re: ValueChangeEvent String is not fired in IE9

2012-08-17 Thread Joey Li
) { // do things here. but the event is not fired in IE9 so codes inside here is not executed at all. } }); On Friday, 17 August 2012 18:57:30 UTC-4, Dennis Haupt wrote: no problem here. are you doing anything special? Am 18.08.2012 00:31, schrieb Joey

Re: ValueChangeEvent String is not fired in IE9

2012-08-17 Thread Joey Li
Joey Li: I tried to add a ValueChangeHandler to textbox. In IE 9, I found that the event is not fired at all. But it works fine in Chrome and FF. I google it and some said the changeHandler event is not fired as well. Anyone has workaround for it? Thanks. -- You received

Re: ValueChangeEvent String is not fired in IE9

2012-08-17 Thread Joey
I tested textBox, it works fine. but datebox.getTextBox() does not work in IE9. it works in other browser though, Chrome, FF. On Friday, 17 August 2012 18:57:30 UTC-4, Dennis Haupt wrote: no problem here. are you doing anything special? Am 18.08.2012 00:31, schrieb Joey Li: I tried

Re: change DateBox default time

2012-08-16 Thread Joey Li
there is DST in where I am living. In my app, I want to show users their correct TimeZone no matter where they live. For example, in Eastern America/Canada users, the app shoulde show UTC-5 in summer time( DST ), and In winter, it should show UTC-4 (PDT). However, my app is always showing UTC-4

Re: change DateBox default time

2012-08-16 Thread Joey Li
is incorrect. I am still struggling with my 1st problem. How to change the default time in datebox from noon to midnight.. Jens suggests using CalendarUtil.resetTime() , but i have no idea how. any ideas? Thanks On Thursday, 16 August 2012 13:06:51 UTC-4, Joey Li wrote: there is DST in where

change DateBox default time

2012-08-15 Thread Joey Li
I try to use GWT DateBox. When i click the DatePicker, the date and time will be shown in the box. But it looks like the default time is 12:00pm (noon) For example, If I picked 2012, Aug, 16th in the datePicker, and my code is the following: date.setFormat(new

Re: GWT - Unexpected scrollbar appeared in GWT-DataGrid while using Canvas

2012-08-15 Thread Joey Li
On Thursday, 2 August 2012 18:13:30 UTC-4, Joey Li wrote: I found a bug that there will be some unexpected scrollbars appeared in GWT-DataGrid when using Canvas in the same area. No matter what functions of Canvas I used, even if I just use Canvas to draw a line, it will cause problem

Re: GWT - Unexpected scrollbar appeared in GWT-DataGrid while using Canvas

2012-08-15 Thread Joey Li
On Thursday, 2 August 2012 18:13:30 UTC-4, Joey Li wrote: I found a bug that there will be some unexpected scrollbars appeared in GWT-DataGrid when using Canvas in the same area. No matter what functions of Canvas I used, even if I just use Canvas to draw a line, it will cause problem

Re: GWT - Unexpected scrollbar appeared in GWT-DataGrid while using Canvas

2012-08-15 Thread Joey Li
Any updates? Anyone encounter this as well? -- 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/-/y0nbOSzSuFEJ. To post to this group, send email to

Re: How to vertically and horizontally centre the form panel inside a scroll panel

2012-08-04 Thread Joey Li
Thanks. Your method works fine and it is the only solution I can have right now. By the way, could you please give me some example about how to add resize handler to my page so that myform's position is always in the center even if the window is resized? On Friday, 3 August 2012 10:47:13

How to vertically and horizontally centre the form panel inside a scroll panel

2012-08-02 Thread Joey Li
I have a FormPanel inside a ScrollPanel. The ScrollPanel is located in the center part of DockLayoutPanel. I want to vertially and horizontally center the FormPanel inside the ScrollPanel. I tried a few ways to do this but no success. I have tired putting a verticalPanel/horizontalPanel

GWT - Unexpected scrollbar appeared in GWT-DataGrid while using Canvas

2012-08-02 Thread Joey Li
I found a bug that there will be some unexpected scrollbars appeared in GWT-DataGrid when using Canvas in the same area. No matter what functions of Canvas I used, even if I just use Canvas to draw a line, it will cause problem. The scenario is hard to describe clearly. I will try my best.

Problem about using DataGrid wrapped StackLayoutPanel

2012-07-10 Thread Joey Li
I tried to use DataGrid and put it in the stacklayoutpanel.At the time when I provide the data for the ListDataProvider, the CellTable is not visible in the browser because it's on a non active tab (although it's visible in the DOM tree). After switching to the tab containing the CellTable

problem using DataGrid in StackLayoutPanel

2012-07-10 Thread Joey Li
I tried to use DataGrid and put it in the stacklayoutpanel.At the time when I provide the data for the ListDataProvider, the CellTable is not visible in the browser because it's on a non active tab (although it's visible in the DOM tree). After switching to the tab containing the CellTable

IE keeps reloading the EntryPoint

2011-09-12 Thread Joey Jallorina
Hi Guys, I'm using GWT 2.3 implemented in MVP with AppController. Problem is when using IE7 or IE8 everytime I change the token (via hyperlink or typing directly in the address bar), the application reloads starting from the EntryPoint. This is not happening in Firefox or Chrome. Anybody who has

Anybody has simple way to get Token when implement XRSF protection.

2011-07-06 Thread Joey
isn't // present } catch (Throwable e) { // unexpected } }); - Thanks Joey -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

Refresh TabPanel in GWT

2009-07-27 Thread Joey
How can I refresh TabPanel when particular tab is selected? Because there is no setWidget() method in TabPanel --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,