Cell Table column sorting ties grid to data provider

2012-05-08 Thread Wayne Marsh
Is there any sensible strategy for implementing column sorting without having to know the type of data provider that's backing the table? It seems a shame that when I define my columns, I also have to decide on what data provider I'll be using if I choose to sort them. Am I missing something?

Re: GWT 2.4.0, class-level bean validations

2012-05-04 Thread Wayne Marsh
On Friday, 4 May 2012 09:21:08 UTC+1, Thomas Broyer wrote: On Thursday, May 3, 2012 7:14:24 PM UTC+2, W Marsh wrote: Hi all. I've marked an Editor up with HasEditorErrorsSomeEntity so that it can receive custom, class-level validations and report the errors appropriately. I'm probably

GWT 2.4.0, class-level bean validations

2012-05-03 Thread Wayne Marsh
Hi all. I've marked an Editor up with HasEditorErrorsSomeEntity so that it can receive custom, class-level validations and report the errors appropriately. I'm probably doing this wrong, because I don't get the class-level errors passed to the top-level editor. It also gets sub-editor errors

IntegerBox not restricting input to integers in GWT 2.4.0

2012-04-20 Thread Wayne Marsh
Am I missing something? It just acts like a normal TextBox for me. Here's the simplest example: import com.google.gwt.core.client.EntryPoint; import com.google.gwt.user.client.ui.IntegerBox; import com.google.gwt.user.client.ui.RootPanel; /** * Entry point classes define