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 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.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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 receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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 google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


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:  /Windows/Preferences/WindowsBuilder/GWT/
 2-)Close Eclipse ide
 3-)Download and install 
 https://docs.google.com/file/d/0B9KWSpNWygKAYW1yeDhBa2xaRlU/edit# 
 4-)Restar eclipse

 WUALA!!!

 PD: if you can't dowload the file fron the above link, try:

 https://docs.google.com/file/d/0B_19kwXNeuHcZ0tsNjZRMFRvVnc/edit?usp=sharing
 or
 https://mega.co.nz/#!6w4UgQYT!VoLne2JjSEQcA8TymwLERind0TEoqrrCbCI3-qdkjoM



-- 
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.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/groups/opt_out.


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 group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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 components
are created.

So why is IE have a problem creating more than 6 TimePicker
components?
Any Idea ?

Thanks,
-Tapas

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



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;
background: red;
}
.gwt-MenuBar-vertical .gwt-MenuItem-hover {
color: white;
background: green;
}

But the actual result is not right. When mouse is over, the display is
using '.gwt-MenuItem-selected'. If I selected a item, then move the
mouse to other item, the selected item back to default color.

What's wrong with my css? Please help.

Thanks

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---



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.  The following code

DialogBox dialog =  new DialogBox(true, true);
dialog.show();

does not ignore keyboard and mouse events for widgets not contained by
the dialog


Thank you,

   Boris


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~--~~~~--~~--~--~---