Re: GWT with a non-java server

2012-04-10 Thread dominikz
We've been using GWT with non-java servers (SAP and AS/400): https://groups.google.com/d/topic/google-web-toolkit/7-JLKRd0H3s/discussion -- 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: How to make a hourglass pointer?

2012-04-10 Thread Kei Kei
I use the following code public class ShowHourGlass extends FlowPanel { Button showHourGlass = new Button(Show HourGlass); protected void onLoad(){ this.add(showHourGlass); showHourGlass.addClickHandler(new ClickHandler(){ @Override public

GWT-Eureka available

2012-04-10 Thread ctasada
Hi everyone, I just published the first version of GWT-Eureka. This is a new library for GWT widgets that are not big enough to fit anywhere else. Right now you can find the next components: * TimePicker: As the name says, a time picker, where you can type hours and minutes * iOSButton: A

Re: GWT-Eureka available

2012-04-10 Thread jhulford
First, the widgets look fantastic. Great job there. My issue would be w/ keying time into the time pickers. It's a little wonky, in that, you can't click into the textfield and just key 17:45. You have to make sure to click the cursor after the hour, then type 17 and the click the mouse

Re: Call for action: Time to rethink a road-map and more frequent updates for GWT.

2012-04-10 Thread java4africa
+1 I stuck my neck out for GWT - I think it's a great concept. But without any news, plans, or long term commitment, I think it's pretty risky to throw man-months of development behind it. There are other options for web development where I have more control over what will be available in 3+

Re: Call for action: Time to rethink a road-map and more frequent updates for GWT.

2012-04-10 Thread Patrick Tucker
If you watch the GWT Contributor Google group, you can see what is being reviewed/worked on, what is getting committed to trunk and what not... On Wednesday, April 4, 2012 1:04:15 PM UTC-4, Trey Roby wrote: It has been about 4 months since Ray's post on what the GWT team is working on. In

Re: How to make a hourglass pointer?

2012-04-10 Thread pop.ionut84
Why don't you display a Please Wait popup for the lengthy process? You can add to that popup an animated gif and message. On Tuesday, April 3, 2012 1:07:10 PM UTC+3, tong123123 wrote: For lengthy process, I want to set the mouse pointer to hourglass, how to do it in GWT? -- You received

Unexpected server to client exception translation occurring

2012-04-10 Thread Adam Gordon
We're building some internal web applications for divisions and we have a need to send any server side stack traces to the client so that when employee end-users encounter errors they can put a stacktrace in our ticketing system. I have registered my own GWT.UncaughtExceptionHandler that

Re: RequestFactory and ListDataProvider assign type Problem

2012-04-10 Thread jmbz84
Solved! removed the type T from the methods On 9 abr, 21:37, jmbz84 jmb...@gmail.com wrote: Hello, I'm trying to make a generic method to get some data with RequestFactory. I have a method getData that executes fire on a Request in order to get a list of items(generics) The problem is

Re: Unexpected server to client exception translation occurring

2012-04-10 Thread Adam Gordon
Ok, I figured out what's going on here. Checked exceptions appear to be handled automatically by GWT and thrown to the client (not sure what happens here if they're not serializable). Unchecked exceptions are processed by AbstractRemoteServiceServlet.doUnexpectedFailure(Throwable). There

Re: GWT DataGrid Widget unpredictable row height issue...

2012-04-10 Thread Sachin Shekhar R
Probably you can fix it by adding css property white-space: nowrap; .dataGridFooter, .dataGridHeader:hover,.dataGridCell by using custom grid css file with GWT default grid css. On Thursday, 8 March 2012 01:13:49 UTC+5:30, Bill M wrote: Hi Vinayak, I think I found the problem. I have a

Re: CustomScrollPanel issue (extra div overlays generated impacting performance?)

2012-04-10 Thread GWTter
Hi Deepak, Sure, I'll let you know once I add that functionality. Could be a little while as that currently is not a priority compared to my other items, but it definitely is needed and will be added. -Seth On Wednesday, April 4, 2012 4:30:01 PM UTC-4, Deepak Singh wrote: Ok. So request

Re: GWT-Eureka available

2012-04-10 Thread Carlos Tasada
Thanks for your comments. The problem typing the hours/minutes has been hunting me for sometime, but I simply cannot find a better way to do it. An alternative would be to allow to type anything and then fix it when the widget loses focus, but I'm not really happy about it either. Any behavior

Re: How to make a hourglass pointer?

2012-04-10 Thread Jens
3) If the mouse cursor not leave the button, the cursor is still in hand shape and the user can continue click the button many times. The cursor is still a hand because buttons, links, ... have their own curser css rule. You would have to change these as well. Also you can still click

Re: CustomScrollPanel issue (extra div overlays generated impacting performance?)

2012-04-10 Thread Deepak Singh
Thanks Seth. I will wait. On Wed, Apr 11, 2012 at 1:23 AM, GWTter seth@gmail.com wrote: Hi Deepak, Sure, I'll let you know once I add that functionality. Could be a little while as that currently is not a priority compared to my other items, but it definitely is needed and will be

Re: GWT-Eureka available

2012-04-10 Thread Jens
Looks nice, but: 1.) when I click into any of both text boxes you should preselect all its contents (like its done when focusing the textbox using TAB) so I can start typing a new hour / minute. I don't want to select it myself using the mouse or hit backspace 2 times before I can change hour

GWT CellTable.Resources causes Deferred binding exception

2012-04-10 Thread Rick Fisher
Hello GWT 2.4 I am getting the following exception trying to instantiate a CellTable Caused by: java.lang.RuntimeException: Deferred binding failed for 'com.google.gwt.user.cellview.client.CellTable$Resources' (did you forget to inherit a required module?) The offending code is:

[gwt-contrib] Re: Fix issue 6710: entities referenced from list of value proxies (issue1646803)

2012-04-10 Thread t . broyer
https://gwt-code-reviews.appspot.com/1646803/diff/1/user/src/com/google/web/bindery/requestfactory/server/Resolver.java File user/src/com/google/web/bindery/requestfactory/server/Resolver.java (right):

[gwt-contrib] Re: Issue 6331: Let AutoBean accept numbers for dates and longs (issue1601805)

2012-04-10 Thread t . broyer
I've added similar changes to BigDecimal and BigInteger so you can have those Big* types in your autobeans/RF-proxies and accept numeric values in the JSON (allows changing from Double to BigDecimal, for instance, in an interface without the need to change the server-side code / JSON

[gwt-contrib] Re: Fix for issue 5952: RequestContext#isChanged. (issue1601806)

2012-04-10 Thread t . broyer
http://gwt-code-reviews.appspot.com/1601806/diff/1015/user/src/com/google/web/bindery/requestfactory/shared/impl/AbstractRequestContext.java File user/src/com/google/web/bindery/requestfactory/shared/impl/AbstractRequestContext.java (right):

[gwt-contrib] Issue 7175: isBodyLoaded is called instantly if xsiframe linker is used (issue1647803)

2012-04-10 Thread rdayal
Alan, can you review this one? http://gwt-code-reviews.appspot.com/1647803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Avoid Java bottleneck by using explicit Charset for byte[]-String conversions (issue1588803)

2012-04-10 Thread rdayal
On 2012/01/23 23:43:12, rdayal wrote: LGTM. Submitted. http://gwt-code-reviews.appspot.com/1588803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Move more classes from client to shared, so they can be used on the (issue1681803)

2012-04-10 Thread jat
This isn't completely ready for review, as UiBinder still has a reference to the old DateTimeFormat.PredefinedFormat that I haven't tracked down yet. In particular, I am interested in feedback on API changes in c.g.g.i18n.shared as part of moving from client: - introducing Locales for

[gwt-contrib] Re: Issue 7175: isBodyLoaded is called instantly if xsiframe linker is used (issue1647803)

2012-04-10 Thread acleung
LGTM http://gwt-code-reviews.appspot.com/1647803/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors