Custom PickList Editor

2014-10-07 Thread Gwt User
Hello, I've created a custom Widget Picklist (two CellList of User). Now I want to implement an Editor, that handle the functions addToList and removeFromList. Which Editor and how should I use? (I have hear of something like IsEditorListEditorBenutzer, UserEditor ...) Best regards -- You

Re: adding a DockLayoutPanel to a SimplePanel?

2014-05-03 Thread GWT User
In case someone is still pestered by same issue, just replace SimplePanel with com.google.gwt.user.client.ui.SimpleLayoutPanel in HelloMVP example. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop

Re: Why won't the GWT 2.1 MVP example compile?

2014-05-01 Thread GWT User
This is as crazy as it could be. Why can't they add it in documentation! -- 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

Re: GWT Designer - Can't create SWT Browser

2013-08-29 Thread GWT User
That didn't work. On Friday, February 1, 2013 10:22:45 AM UTC-8, Federico J. Rojkin wrote: The instructions below maybe help you, I used it in a debian squeeze installation: 1-)Disable de options Used webkit for rendering GWT UI (if available) that is in:

Vertical Tab Bar

2011-04-02 Thread New GWT User
Hi I am new to GWT, Trying to get hands dirty on it.I am looking for a Vertical Tab Bar. I see GWT has Horizontal Tab Bar readily available, Is there anything like that for Vertical Tab Bar. Thanks -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Invalid Argument Exception while using com.google.gwt.widgetideas.datepicker.TimePicker

2009-04-26 Thread GWT User
I am getting Invalid Argument exception while using com.google.gwt.widgetideas.datepicker.TimePicker. I have done an individual test on this Class , for (int i = 0;i 10; i++) { TimePicker tp = new TimePicker(new Date(),false); } ... And the exception on IE7 is thrown after 7 TimePicker

Please help with gwt MenuItem CSS define

2009-01-13 Thread gwt-user
I need to change the menu item into different colors (both front background) when mouse over and the item is selected. So I defined the following in my css: .gwt-MenuBar-vertical .gwt-MenuItem { color: yellow; background: blue; } .gwt-MenuBar-vertical .gwt-MenuItem-selected { color: black;

How to make DialogBox modal both in terms of code execution and events?

2008-08-29 Thread gwt-user
1. To illustrate the first point. In the following code: boolean ok = Window.confirm(Are you sure .); if (ok) { } code inside the if block will be executed only after user presses button on the confirm dialog. Is it possible to do the same with instance of DialogBox? 2.