Re: Displaying a Label with icon?

2013-04-08 Thread Andrea Boscolo
For a widget-based solution, without rolling out something in-house, my preferred approach is to use TextButton [1]. Note that there is not a direct method to setup the icon of the inner cell, so you have to subclass TextButton and add a simple method like: public void setIcon(ImageResource

Re: Hover Functionality

2013-04-08 Thread Bongekile Cabangana
No I do not get them. I think I need to have some work around for the sink events, Thanks On Fri, Apr 5, 2013 at 9:49 PM, Michael Prentice splak...@gmail.com wrote: In your dev mode, do you see any errors in the console (might need to send a sever request to see it) like this? [WARN]

PopupDialog with DockLayoutPanel is empty?

2013-04-08 Thread membersound
Hi, how can I use a DockLayoutPanel within a PopupDialog? MyPanel works like: g:FlowPanel g:Label text=test / /g:FlowPanel new PopupPanel(); popup.setWidget(new MyPanel()); What does not work is: g:DockLayoutPanel unit=PX g:center g:Label text=test / /g:center /g:DockLayoutPanel Using

Re: PopupDialog with DockLayoutPanel is empty?

2013-04-08 Thread Jens
DockLayoutPanel needs a size in pixel or you use 100% as size but then you have to set a size on the PopupPanel. -- J. -- 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

Re: Error in Totoe XML Parser.

2013-04-08 Thread skippy
Thanks, that seems to take care of it. On Apr 5, 2:52 am, Harald Pehl harald.p...@gmail.com wrote: Why do you setup namespaces? Your XML does not seem to use them? - Harald Am Donnerstag, 4. April 2013 19:54:04 UTC+2 schrieb skippy: This code works fine for me in IE but fails in

Re: Google Plus api php

2013-04-08 Thread Michael Prentice
Looks like a problem with the Google APIs and not GWT. Perhaps contact someone responsible for Google+ APIs? On Sunday, April 7, 2013 5:35:34 PM UTC-4, Олег Ильїн wrote: Hi to all. I have a some problem width using google api. I use php sdk for generate oAuth 2.0 access_token, and try to

UIBinder XML not seeing CSSResource (using Eclipse)

2013-04-08 Thread brec
GWT 2.5.1, Eclipse 4.2 using GWT plugin (GPE). I have a Main.ui.xml file thus: !DOCTYPE ui:UiBinder SYSTEM http://dl.google.com/gwt/DTD/xhtml.ent; ui:UiBinder xmlns:ui=urn:ui:com.google.gwt.uibinder xmlns:g=urn:import:com.google.gwt.user.client.ui ui:style

UIBundle XML not seeing CSS styles

2013-04-08 Thread brec
GWT 2.5.1, Eclipse 4.2 using GWT plugin (GPE). I have a Main.ui.xml file thus: !DOCTYPE ui:UiBinder SYSTEM http://dl.google.com/gwt/DTD/xhtml.ent; ui:UiBinder xmlns:ui=urn:ui:com.google.gwt.uibinder xmlns:g=urn:import:com.google.gwt.user.client.ui ui:style

Re: Cannot build project with Guava / Collect.gwt.xml

2013-04-08 Thread Philippe Lhoste
On 03/04/2013 14:46, membersound wrote: my project works at home, but I'm on a different machine and cannot build exactly the same project. It complains about the Guava Library not being on classpath. But it is, further I also have the correct entry in the project.gwt.xml: inherits

Re: Make GWT app run side by side with a Rest API

2013-04-08 Thread Philippe Lhoste
On 06/04/2013 22:36, Xybrek wrote: When using GWT we use this URL forms: Debug: http://127.0.0.1:/index.html?gwt.codesvr=127.0.0.1:9997#hash Compiled: http://127.0.0.1:/index.html#hash I need to be able to access the underlying Rest API. Which I need to map within the

Re: TabLayoutPanel with scroll buttons

2013-04-08 Thread Philippe Lhoste
An update: I prefer to have the scroll buttons on each side of the tabs, and I reduced the tab bar so it is not under the buttons. I put the images in divs (SimplePanel) for further CSS styling (adding cursor: pointer; for example). And I fixed a bug in my previous version: when the bar is

Re: UIBundle XML not seeing CSS styles

2013-04-08 Thread Jens
It should be ui:style src='GWTtest.css'/ui:style instead of ui:style src='GWTtest.css' /ui:style -- J. -- 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 email

Re: GWT App -- Firefox 20 regression?

2013-04-08 Thread Geoffrey Wiseman
On Friday, April 5, 2013 4:49:20 PM UTC-4, Geoffrey Wiseman wrote: I hit an issue this afternoon where I have an unexplained issue with a select where I can't select any of the options in it, and it seems like the handler isn't even being called (or isn't triggering the debugger in

Re: UIBundle XML not seeing CSS styles

2013-04-08 Thread brec
Thanks, Jens; but, alas, that didn't make any difference. -- 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 email to google-web-toolkit+unsubscr...@googlegroups.com.

Re: UIBundle XML not seeing CSS styles

2013-04-08 Thread brec
Thanks, Jens! (In case you saw my earlier response, since deleted -- that was due to a typo in implementing your correction.) -- 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

Re: Problems adding Click Handler to Grid

2013-04-08 Thread skippy
I had a onBrowserEvent method in my ancestor class that was consuming the event. On Apr 5, 4:49 pm, Michael Prentice splak...@gmail.com wrote: I just tried this:                 grid.addClickHandler(new ClickHandler() { public void onClick(ClickEvent event) { System.out.println(Grid

UIBinder HTMLPanel: set background color for entire browser window?

2013-04-08 Thread brec
GWT 2.5.1, Eclipse 4.2 using GWT plugin (GPE). I have a Main.ui.xml file thus: !DOCTYPE ui:UiBinder SYSTEM http://dl.google.com/gwt/DTD/xhtml.ent; ui:UiBinder xmlns:ui=urn:ui:com.google.gwt.uibinder xmlns:g=urn:import:com.google.gwt.user.client.ui ui:style src='GWTtest.css' /

Re-deployment on appengine sometimes breaks GWT app (Module.Cache.html not found)

2013-04-08 Thread Robert Hoffmann
Hi, Every now and then when uploading an update of my GWT application to appengine, the uploaded app seems in an inconsistent state, i.e. the Module.Cache.html file is not found. e.g. App not working, Browser console says '/Module/C96DE337B74EEDDBD2CF70FC4C65827B.cache.html not found' This

Unable to find '.gwt.xml' on your classpath (again)

2013-04-08 Thread Andy King
I am at my wits end with this problem ... I've looked at suggested solutions, but none have worked. Here is the (all-too-familiar) error that I see in the GWT Development Mode window: [DEBUG] [fosterapet] - Loading inherited module 'fosterapet' [ERROR] [fosterapet] - Unable to find

[gwt-contrib] Change in gwt[master]: Removed unnecessary whitespace in JSONObject.toString.

2013-04-08 Thread Daniel Kurka
Daniel Kurka has uploaded a new patch set (#2). Change subject: Removed unnecessary whitespace in JSONObject.toString. .. Removed unnecessary whitespace in JSONObject.toString. Change-Id:

[gwt-contrib] Change in gwt[master]: Widget Iterator now throws NoSuchElementExceptions correctly.

2013-04-08 Thread Daniel Kurka
Daniel Kurka has uploaded a new change for review. https://gwt-review.googlesource.com/2440 Change subject: Widget Iterator now throws NoSuchElementExceptions correctly. .. Widget Iterator now throws

[gwt-contrib] Change in gwt[master]: Widget Iterator now throws NoSuchElementExceptions correctly.

2013-04-08 Thread Thomas Broyer
Thomas Broyer has posted comments on this change. Change subject: Widget Iterator now throws NoSuchElementExceptions correctly. .. Patch Set 1: Code-Review+1 (2 comments)

[gwt-contrib] Change in gwt[master]: Widget Iterator now throws NoSuchElementExceptions correctly.

2013-04-08 Thread Daniel Kurka
Daniel Kurka has uploaded a new patch set (#2). Change subject: Widget Iterator now throws NoSuchElementExceptions correctly. .. Widget Iterator now throws NoSuchElementExceptions correctly. Change-Id:

[gwt-contrib] Change in gwt[master]: Widget Iterator now throws NoSuchElementExceptions correctly.

2013-04-08 Thread Daniel Kurka
Daniel Kurka has posted comments on this change. Change subject: Widget Iterator now throws NoSuchElementExceptions correctly. .. Patch Set 2: My code formatter seems to go wild when using the gwt-format.xml from svn. Is

[gwt-contrib] Change in gwt[master]: Widget Iterator now throws NoSuchElementExceptions correctly.

2013-04-08 Thread Daniel Kurka
Daniel Kurka has posted comments on this change. Change subject: Widget Iterator now throws NoSuchElementExceptions correctly. .. Patch Set 2: Line 42: if (index + 1 = size) { if (index size) would be more readable.

[gwt-contrib] Change in gwt[master]: Widget Iterator now throws NoSuchElementExceptions correctly.

2013-04-08 Thread Matthew Dempsky
Matthew Dempsky has posted comments on this change. Change subject: Widget Iterator now throws NoSuchElementExceptions correctly. .. Patch Set 2: Code-Review+1 -- To view, visit https://gwt-review.googlesource.com/2440 To

[gwt-contrib] Change in gwt[master]: add StringBuffer/Builder.reverse

2013-04-08 Thread Daniel Kurka
Daniel Kurka has uploaded a new change for review. https://gwt-review.googlesource.com/2431 Change subject: add StringBuffer/Builder.reverse .. add StringBuffer/Builder.reverse fixes ISSUE 449 Change-Id:

[gwt-contrib] Change in gwt[master]: Widget Iterator now throws NoSuchElementExceptions correctly.

2013-04-08 Thread Brian Slesinsky
Brian Slesinsky has posted comments on this change. Change subject: Widget Iterator now throws NoSuchElementExceptions correctly. .. Patch Set 2: Code-Review+1 (1 comment)

[gwt-contrib] Change in gwt[master]: Widget Iterator now throws NoSuchElementExceptions correctly.

2013-04-08 Thread Matthew Dempsky
Matthew Dempsky has posted comments on this change. Change subject: Widget Iterator now throws NoSuchElementExceptions correctly. .. Patch Set 2: (1 comment) File

[gwt-contrib] Change in gwt[master]: Widget Iterator now throws NoSuchElementExceptions correctly.

2013-04-08 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: Widget Iterator now throws NoSuchElementExceptions correctly. .. Patch Set 2: (7 comments) File

[gwt-contrib] Change in gwt[master]: add StringBuffer/Builder.reverse

2013-04-08 Thread Goktug Gokdogan
Goktug Gokdogan has posted comments on this change. Change subject: add StringBuffer/Builder.reverse .. Patch Set 1: (5 comments) File

[gwt-contrib] Re: Fixes #8036, properly sorting of places in PlaceHistoryGeneratorContext (issue1895803)

2013-04-08 Thread goktug
On 2013/04/04 14:06:13, tbroyer wrote: We just need someone with commit rights. Calling in Matthew (at random), who will delegate if needed. I'm not sure if this doesn't introduce any new problems and solves all problems with the comparator. Can you reproduce the problem in

[gwt-contrib] Change in gwt[master]: Allow @UIHandler annotated methods to be private.

2013-04-08 Thread Roberto Lublinerman
Roberto Lublinerman has uploaded a new change for review. https://gwt-review.googlesource.com/2450 Change subject: Allow @UIHandler annotated methods to be private. .. Allow @UIHandler annotated methods to be private. Even

[gwt-contrib] Change in gwt[master]: Allow @UIHandler annotated methods to be private.

2013-04-08 Thread Roberto Lublinerman
Roberto Lublinerman has uploaded a new patch set (#2). Change subject: Allow @UIHandler annotated methods to be private. .. Allow @UIHandler annotated methods to be private. Even though @UIHandler annotated methods were not