Re: Cancelling RequestContext.create()

2012-07-31 Thread David Sanders
I'd like to know how to do this as well. Anyone know a solution other than creating a detached proxy? On Friday, 27 May 2011 02:15:06 UTC+10, will0 wrote: Dear all, Considering the following common data structure: ParentProxy { ... ListChildProxy } In our app, the user may

Format date with st nd rd th suffix

2012-07-27 Thread David Sanders
Hi all, How do I format a date so that I can get the st, nd etc suffix for the day of the month? I had a look at DateTimeFormat but couldn't see any modifier for achieving this. Cheers, David -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Themes with SingleScriptLinker

2012-01-28 Thread David Sanders
Hi all, Is there any reason why themes would fail to load with a GWT app compiled using SingleScriptLinker? Thanks, David -- 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: GWT Developer Plugin for Firefox 9

2012-01-06 Thread David Sanders
Mr Leung you're my hero -- 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/-/1ct-Udcq5GMJ. To post to this group, send email to

Re: Correct usage of CompositeEditor?

2011-11-08 Thread David Sanders
The correct solution is to use @Path() See: http://code.google.com/p/google-web-toolkit/source/detail?r=9401 (Thanks to Thomas for pointing out :D) On 8 November 2011 02:42, David Sanders shang.xiao.sand...@gmail.comwrote: Is there a better way of doing this? I'm sure there must be some

Re: Correct usage of CompositeEditor?

2011-11-07 Thread David Sanders
Is there a better way of doing this? I'm sure there must be some way to split up an editor without creating a workaround referring back to the object being edited? Perhaps with some kind of annotation? I just have a flat class that I'm editing with a simple wizard and I've set up a tab panel

Re: Celltable loading state

2011-10-14 Thread David Sanders
You'd probably need to add a zero-sized array list of data and set what you want to show with table.setEmptyTableWidget() -- 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: avoid row selection on cell click in CellTable

2011-10-05 Thread David Sanders
Thanks John! - I was looking to do something similar with a file download cell that I didn't want triggering selection events but pulled my hair out trying to find out how to disable the selection. Your suggestion worked a treat - I used the blacklist method. -- You received this message

Re: GWT Developer Plugin for Firefox 7

2011-09-30 Thread David Sanders
I tried compiling on Ubuntu 11.04 and got: ExternalWrapper.cpp:50:1: error: expected constructor, destructor, or type conversion before ‘ExternalWrapper’ -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web

Re: GWT Developer Plugin for Firefox 7

2011-09-30 Thread David Sanders
Yeah I'm on Ubuntu 64 bit For other 64 bit users out there, I needed to do the following: - Get your Linux 64bit gecko sdk from Mozilla (available here: http://releases.mozilla.org/pub/mozilla.org/xulrunner/releases/7.0/sdk ) - Add -std=gnu++0x to CFLAGS in the Makefile - Make sure I had the

Re: RequestFactoryEditorDriver example?

2011-07-05 Thread David Sanders
Actually nevermind, I was binding the driver to an interface of my view but didn't add the necessary methods to expose the editors. I was pulling my hair out because the concrete class exposed the necessary field editors and I couldn't understand why it wasn't working. Here's where it would

Re: RequestFactoryEditorDriver example?

2011-07-04 Thread David Sanders
I'm getting the same problem as George when I tried setting up a create entity form - the entity sent to the server is blank even though I fill out the fields. The thing is I copied the code from a Spring Roo app but I just cannot get it to work. I had a look inside the generated delegate

Re: I'm a web developer - where do i fit in?

2009-10-22 Thread David Sanders
My company is examining front end technologies and we're a java shop so everyone is interested in GWT. As a web developer (the html/css/ javascript type - and i _like_ javascript) I'm curious where I fit in. I've paged through a number of books and watched a number of online videos and it

Re: I'm a web developer - where do i fit in?

2009-10-22 Thread David Sanders
I've been examining various front end technologies lately and cringe whenever someone claims a particular framework fixes something in javascript. Its almost never a javascript problem but a dom problem or its just a variation from how java works. Additionally, there is no inherent barrier to

Re: Is there any newer gwt library other than smartgwt and gxt?

2009-10-20 Thread David Sanders
*crosses extgwt off list* I love it when people cut through the bullshit... 2009/10/20 martin.krau...@gmail.com martin.krau...@gmail.com Let me enlighten you guys. First of all ExtGWT is anything but free. It costs $329 / per license. Moreover there is an annual upgrade fee because they

Re: Editable ListBox

2009-10-19 Thread David Sanders
Do you mean a combo-box? http://www.extjs.com/products/gxt/#sample-9 2009/10/19 Kanat Abaykhan abaykhan.ka...@gmail.com Hello Guys, Does GWT support editable ListBox? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

Re: CheckBox/RadioButton and change events

2009-10-16 Thread David Sanders
I'm no expert on the dom but I thought that they did do change events: http://www.quirksmode.org/dom/events/change.html#t04 The problem with using ValueChangeEvents is that list boxes don't implement HasValueChangeHandlers... although I believe there plans to implement the HasValue interface: