Questions tagged [suggestbox]

It's a graphical User Interface element which is used to take User input and provides functionality like auto-complete or intellisense.

It's a graphical User Interface element which is used to take User input and provides functionality like auto-complete or intellisense.

68 questions
13
votes
2 answers

GWT Suggestbox define suggest oracle after instantiation

I've defined a suggestbox in UIBinder, and I need to dynamically set its SuggestOracle. All the examples I've seen show that you can only define the suggestoracle at instantiation, but I need to define this AFTER the fact. Is there a way to do…
Rob
  • 479
  • 8
  • 16
6
votes
2 answers

Adding scroll to GWT SuggestBox

Does anyone know how to: 1) Add a scroll to the popup created by the SuggestBox? 2) How to customize the looks (CSS) of the SuggestBox efficiently? I want to make above changes without touching the actual implementation as much as possible. Also…
user_1357
  • 7,766
  • 13
  • 63
  • 106
4
votes
4 answers

Add SuggestBox to CellTable as an editable cell

Is there any way to SuggestBox to CellTable? Maybe there is another solution then SuggestBox? I need to get an editable cell with suggestion feature? I'm using GWT 2.4.
Aleksejs Mjaliks
  • 8,647
  • 6
  • 38
  • 44
4
votes
2 answers

A SuggestBox for wxPython?

Is there a widget for wxPython like the SuggestBox in Google Web Toolkit? It is basically a magic text box that can invoke some code to come up with suggestions relevant to whatever the user has entered so far. Like the search box on Google's web…
Jay Kominek
  • 8,674
  • 1
  • 34
  • 51
3
votes
1 answer

A form in the suggest list in Webix (protoUI)

I'm using Webix and trying to create my own suggest list via protoUI Is it possible to attach the full-featured form (with the text field and the buttons) as a suggest list in Webix? I've already create the UI-part, but I now can't add selected…
Loj
  • 437
  • 2
  • 11
2
votes
1 answer

Retrieving current user entered value from GWT SuggestBox

I'm new to GWT. I have a simple SuggestBox which is populated using a MultiWordSuggestOracle. Users input their data to this SuggestBox, and if they find any match with the existing Suggestions its well and good. I'm able to retrieve this value in…
hashcoder
  • 498
  • 7
  • 19
2
votes
1 answer

GWT suggestBox performance issue

I have a suggestBox with a multiwordsuggestoracle. everything is working fine but there is a performance issue. I have to add around some 12000 Strings to the oracle, but adding this list takes a lot of time, which delays loading of the page. Once…
Zack
  • 105
  • 8
2
votes
2 answers

Selenium is not sending keys to my gwt-SuggestBox

I'm using selenium, scripting in python, to test a webpage that has a gwt-SuggestBox:
Stream:
Jonathan
  • 83
  • 1
  • 6
2
votes
1 answer

Make the SuggestionDisplay div go into the correct position

In my GWT app I have a GWT SuggestBox which I use for a full text search. The problem is that when you scroll in the page while SuggestionDisplay is shown, the results move down the page as you scroll. When I use Firebug to inspect the page, I see…
Niel de Wet
  • 7,806
  • 9
  • 63
  • 100
2
votes
1 answer

ComboBox Suggestion Based On On-Screen Keyboard In .NET

I am developing an application in VB.NET, but the answer could be C#-based also. My problem is: I have a combobox for filtering some data and I am required to implement the search suggestions based on what was previously written (like the Google…
Gabriel Stancu
  • 940
  • 2
  • 13
  • 26
2
votes
1 answer

suggestBox: Suggestions aren't displayed as HTML anymore gwt 2.4 -->2.7

I am not familiar with gwt and I had to upgrade from gwt 2.4 to gwt 2.7. I have a problem with a suggestBox item: i need to interpret HTML tag present in the MultiWordSuggestOracle: I overrided isDisplayingStringHtml to be sure it was set to…
user7258691
2
votes
1 answer

Suggestbox returning suggestions that begin AND contain the user's input

I am using a SuggestBox and I am having some difficulties to obtain the good behavior of my application. Consider the following list of suggestions : 1. lol 2. good evening 3. goodbye 4. end 5. saluti If I use my SuggestBox with this list and I…
Michaël
  • 3,679
  • 7
  • 39
  • 64
2
votes
1 answer

Why suggestion list not getting populated for suggestion box in gwt.?

I am working with suggestion box in GWT but I stuck with a problem in which suggestionBox.showSuggestionList() not showing any results through focusHandler. I have created a suggestion oracle and suggestBox as follows MultiWordSuggestOracle…
Pratik Rawlekar
  • 327
  • 4
  • 14
2
votes
1 answer

How to make SuggestBox (GWT) to suggest using only the first word of the suggestion?

My title may be a bit fuzzy but I want to make my suggestbox to suggest words like this when I type letters into the textbox: Letter typed in suggestbox: A A lpaca A pple A rgon NOT like this: Letter typed in suggestbox:A A lpaca a cute A pple a…
NOOB_USER
  • 163
  • 1
  • 2
  • 10
2
votes
1 answer

GWT-SuggestBox as a TextBox?

I currently have a GWT textbox class that I would like to use, and sometimes based on certain parameters, transform it(add the functionality) into a suggestbox. Is this possible? I don't want to create a new type of widget because then i would loose…
TheJavaBeast
  • 163
  • 3
  • 16
1
2 3 4 5