Re: Question about one detail from StockWatcher sample.

2011-12-10 Thread Chuyang
Yes, M. Eduard is right. The compiler put a field in inner class. So even if the local variable of outer method expires, the inner class still holds the value. To make the outer local variable consistent with inner class field, it uses 'final' key word for outer method's variable. -- You

ValueListBox, RequestFactory and EntityProxyKeyProvider

2011-12-10 Thread pkit
Hi, I'm trying to get a ValueListBox working with RequestFactory, but unfortunately I'm stuck. I am able to fill the ValueListBox with the appropriate values and to successfully retrieve the selected value in the ValueListBox, but I can't figure out how to make the correct choice of the

access to my ubuntu in office

2011-12-10 Thread Poreh
guys hi, I want to access to my ubuntu in office form my home with windows xp how can i see my desktop there please. i now my IP and everything. can you please send and email to d.po...@gmail.com please. Cheers, Dave -- You received this message because you are subscribed to the Google Groups

One type for all

2011-12-10 Thread Adolfo Panizo Touzon
Hi, The last two years I have worked with GWT and other technologies (REST, JPA, Validation (JSR 303 )). In all projects that I developed I found always a commom problem. The compatibility of the data. For example, If I use some annotatons in the Entity to allow the REST functions I can´t

Re: ValueListBox, RequestFactory and EntityProxyKeyProvider

2011-12-10 Thread Thomas Broyer
Because PlayerProxy#getTeam() holds a reference to another proxy (TeamProxy), and PlayerProxy is an EntityProxy, you have to explicitly request the team property when retrieving the player from the server. Are you correctly using a .with(team) in your request? Otherwise, getTeam() will simply

Re: One type for all

2011-12-10 Thread Thomas Broyer
This is (partly) what RequestFactory tries to solve (vs. GWT-RPC): you no longer use your server-side classes on the client-side, so you don't have the issues of your entities having to be translatable by the GWT compiler. If you work with JSON (using things like Jackson or GSON on the

SplitLayoutPanel dragger style

2011-12-10 Thread Christopher Piggott
From UI Binder can you add a style to override the dragger of a split layout panel? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group,

Contact importer

2011-12-10 Thread Vik
Hello Any one can help us on suggesting a contact importer service from various providers like gmail, yahoo etc? We need it as a feature for our non profit 'Sakshum' http://www.sakshum.org based in india working in the field of child disability and education Thankx and Regards Vik Founder

Re: Insert HTML5 player in GWT

2011-12-10 Thread Frank
According to me the Video widget supports everything a normal video tag supports (and what that supports isn't defined but depends from the browser). You can also try : http://code.google.com/p/gwt-html5-video/ but according to me you should just use the Video widget. On 9 dec, 10:15, Frank

What's the best way to use the new Javascript Client Library API in GWT

2011-12-10 Thread Rokesh Jankie
All, Google recently announced this: http://googlecode.blogspot.com/2011/11/javascript-client-library-for-google.html?m=1 I'd like to know what the best way is to use this library in combination with GWT without writing wrappers (since that feels like a work-around). Really looking forward to

Re: Gwt server push

2011-12-10 Thread nacho
If you are using appengine you can try with the Channel Api http://code.google.com/appengine/docs/java/channel/ -- 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: eclipse - imported maven gwt project

2011-12-10 Thread Juan Pablo Gardella
What are the errors showed in Problems View? 2011/12/9 András Csányi sayusi.a...@gmail.com Dear All, I imported my maven project to Eclipse and everything became red. After a few hours long struggling and investigating I can see that Eclipse is not able to deal with dependencies between the

Re: problem with getting height of widget

2011-12-10 Thread Thomas Lefort
Thanks! Just tried, sounded like a great idea, but it doesn't work unfortunately. It's really as if the widgets I add inside the panel are rendered/added after. Really strange... On Dec 9, 9:19 pm, Jens jens.nehlme...@gmail.com wrote: You can use popupPanel.setPopupPositionAndShow(new

Re: problem with getting height of widget

2011-12-10 Thread Alfredo Quiroga-Villamil
Try the following: Scheduler.get().scheduleDeferred(new ScheduledCommand() { @Override public void execute() { // Try to get the size here ... } }); Regards, Alfredo On

Re: Making Application Add-On ready?

2011-12-10 Thread qwertz
Hi, a while ago I created something like this. Now I created a project @googlecode: http://code.google.com/p/gwt-plug/ You can find a very basic example in the repository. The javadoc should help you too. But currently there are some limitations: - Classes can only implement one exportable

Re: access to my ubuntu in office

2011-12-10 Thread SungBok Park
I'm using 'putty' program. it'll let's you connect to your remote system with ssh protocol. you should know about ssh. try googling~!! On Sat, Dec 10, 2011 at 9:06 PM, Poreh d.po...@gmail.com wrote: guys hi, I want to access to my ubuntu in office form my home with windows xp how can i see

Re: Anyone knows GWT Multipage Framework?

2011-12-10 Thread Xybrek
On 12/10/2011 4:09 AM, Jens wrote: A first simple solution would be to configure your web server to redirect requests from http://mysite.com/ to http://mysite.com/index.html. -- J. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view

404 error in production server

2011-12-10 Thread kaynix
My GWT app works fine in hosted mode but I get 404 error in tomcat production server. I'm hosting the app in a remote server so I don't have the access to server log. Annotation used in service class: @RemoteServiceRelativePath(servlet/dash) web.xml configuration: servlet

[gwt-contrib] Re: Fix leak in LayoutImplIE6 (issue1601804)

2011-12-10 Thread t . broyer
LGTM, but I think we really need Joel to double-check (well, we also need him to commit the change, so... ;-) ) Also, maybe the overall process and DOM structure should be documented once in the class javadoc, rather than having it scattered in the class? Something like: For the parent layout

[gwt-contrib] Re: Don't allow SafeHtml strings to end in a script or style context. (issue1608803)

2011-12-10 Thread xtof
On 2011/12/08 18:29:14, jlabanca wrote: LGTM LGTM http://gwt-code-reviews.appspot.com/1608803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors