Re: Combo box in GWT2.4?

2012-05-18 Thread Dimitrijević Ivan


*com.google.gwt.user.client.ui.ListBox*


http://google-web-toolkit.googlecode.com/svn/javadoc/2.4/com/google/gwt/user/client/ui/ListBox.html



On Friday, May 18, 2012 6:47:44 AM UTC+2, ALB-PSP-DV1 wrote:

 We need to display data using combo box in our application. 
 1) Is there a combo box widget in GWT2.4? 
 2) If not is there a workaround to achieve the same? 

 Any help much appreciated. Thanks in advance.

-- 
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/-/kCtKPIbYJi8J.
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.



Re: Combo box in GWT2.4?

2012-05-18 Thread ALB-PSP-DV1
We need a editable listbox i.e. combo box.

Is there a attribute which can make the listbox editable?

On May 18, 12:23 pm, Dimitrijević Ivan dim...@gmail.com wrote:
 *com.google.gwt.user.client.ui.ListBox*

 http://google-web-toolkit.googlecode.com/svn/javadoc/2.4/com/google/g...







 On Friday, May 18, 2012 6:47:44 AM UTC+2, ALB-PSP-DV1 wrote:

  We need to display data using combo box in our application.
  1) Is there a combo box widget in GWT2.4?
  2) If not is there a workaround to achieve the same?

  Any help much appreciated. Thanks in advance.

-- 
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.



Re: Combo box in GWT2.4?

2012-05-18 Thread Dimitrijević Ivan
What do you meen by editable?

You can use setVisibleItemCount(1) method to make combobox. If 
visibleItemCount is bigger that this control is displayed as a listbox.


On Friday, May 18, 2012 1:29:12 PM UTC+2, ALB-PSP-DV1 wrote:

 We need a editable listbox i.e. combo box. 

 Is there a attribute which can make the listbox editable? 

 On May 18, 12:23 pm, Dimitrijević Ivan dim...@gmail.com wrote: 
  *com.google.gwt.user.client.ui.ListBox* 
  
  http://google-web-toolkit.googlecode.com/svn/javadoc/2.4/com/google/g... 

  
  
  
  
  
  
  
  On Friday, May 18, 2012 6:47:44 AM UTC+2, ALB-PSP-DV1 wrote: 
  
   We need to display data using combo box in our application. 
   1) Is there a combo box widget in GWT2.4? 
   2) If not is there a workaround to achieve the same? 
  
   Any help much appreciated. Thanks in advance.

-- 
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/-/lqJ-CGGPkgEJ.
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.



Re: Combo box in GWT2.4?

2012-05-18 Thread ALB-PSP-DV1
We need a combination of a drop-down list or list box and a single-
line textbox, allowing the user to either type a value directly into
the control or choose from the list of existing options(not suggestbox
though).


On May 18, 5:06 pm, Dimitrijević Ivan dim...@gmail.com wrote:
 What do you meen by editable?

 You can use setVisibleItemCount(1) method to make combobox. If
 visibleItemCount is bigger that this control is displayed as a listbox.







 On Friday, May 18, 2012 1:29:12 PM UTC+2, ALB-PSP-DV1 wrote:

  We need a editable listbox i.e. combo box.

  Is there a attribute which can make the listbox editable?

  On May 18, 12:23 pm, Dimitrijević Ivan dim...@gmail.com wrote:
   *com.google.gwt.user.client.ui.ListBox*

  http://google-web-toolkit.googlecode.com/svn/javadoc/2.4/com/google/g...

   On Friday, May 18, 2012 6:47:44 AM UTC+2, ALB-PSP-DV1 wrote:

We need to display data using combo box in our application.
1) Is there a combo box widget in GWT2.4?
2) If not is there a workaround to achieve the same?

Any help much appreciated. Thanks in advance.

-- 
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.



Re: Combo box in GWT2.4?

2012-05-18 Thread Isaac Truett
I played around with a ComboBox implementation long ago (circa GWT 1.6).
It's actually built on top of a modified SuggestBox. I wouldn't bet on it
working in 2.x as-is, but it's Apache licensed so do as you will with the
source under those terms.

http://code.google.com/p/simple-gwt/wiki/ComboBoxModule

Isaac


On Fri, May 18, 2012 at 8:17 AM, ALB-PSP-DV1 albpsp...@gmail.com wrote:

 We need a combination of a drop-down list or list box and a single-
 line textbox, allowing the user to either type a value directly into
 the control or choose from the list of existing options(not suggestbox
 though).


 On May 18, 5:06 pm, Dimitrijević Ivan dim...@gmail.com wrote:
  What do you meen by editable?
 
  You can use setVisibleItemCount(1) method to make combobox. If
  visibleItemCount is bigger that this control is displayed as a listbox.
 
 
 
 
 
 
 
  On Friday, May 18, 2012 1:29:12 PM UTC+2, ALB-PSP-DV1 wrote:
 
   We need a editable listbox i.e. combo box.
 
   Is there a attribute which can make the listbox editable?
 
   On May 18, 12:23 pm, Dimitrijević Ivan dim...@gmail.com wrote:
*com.google.gwt.user.client.ui.ListBox*
 
   
 http://google-web-toolkit.googlecode.com/svn/javadoc/2.4/com/google/g...
 
On Friday, May 18, 2012 6:47:44 AM UTC+2, ALB-PSP-DV1 wrote:
 
 We need to display data using combo box in our application.
 1) Is there a combo box widget in GWT2.4?
 2) If not is there a workaround to achieve the same?
 
 Any help much appreciated. Thanks in advance.

 --
 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.



-- 
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.