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
0
votes
1 answer

How to hide suggestions of a GWT suggest box?

I want to add the functionality that whenever I press the reset button the suggestion list should get hided. I have tried the hideSuggestionList() method but it is showing as deprecated. Please help me. Thanks in advance.
Sapan
  • 59
  • 1
  • 4
0
votes
1 answer

GWT: SuggestionBox as a global variable

I have an application with 2 Views and 2 Presenters. I have a fixed top menu with a search box using a SuggestionBox. I get the suggestion list from database, and I load it into the MultiWordSuggestOracle of the SuggestionBox, using addAll(..)…
jav_000
  • 173
  • 6
  • 13
0
votes
0 answers

EditText Lost Focus When Keyboard Suggestion Appears

I have a problem with my android application. I have a EditText in a ListView. When I focus the EditText, keyboard appears (normally) but when the keyboard suggestions appears I lost focused and I can't focus in a more. Thank you for all the help.
user1928388
  • 203
  • 2
  • 4
  • 10
0
votes
1 answer

Display Gwt SuggestBox cells side by side

GWT SuggestBox's search results are displayed in a element, which (obviously) contains one
element per result. This causes the results to display on top of each other, like that: Instead, I wish I could display the results…
spg
  • 9,309
  • 4
  • 36
  • 41
0
votes
1 answer

scroll bug of suggest box in gwt

I am creating Suggestbox in my gwt project.I used the css trick to add a scrollbar on my suggest popup like below, .suggestPopupContent{ height: 183px; overflow-y: scroll; text-align : left; cursor : …
Rahul
  • 119
  • 2
  • 12
0
votes
1 answer

Creating a GWT SuggestOracle with custom object suggestions

I'm trying to convert a drop down box widget into a SuggestionBox because the current drop down menu has 100+ choices. It seems like you can only add String suggestions to a SuggestOracle though. I need to be able to add a custom object that…
James Hush
  • 479
  • 1
  • 10
  • 26
-1
votes
1 answer

Why getSelectedItem().getDisplayString() returns abc where it should return only abc for suggestion box in gwt

I am working with Suggestion box in gwt, I have applied a selectionHandler on that suggestion box. If I select "abc" value then getSelectedItem().getDisplaySring() should return "abc" instead it returns abc. Can someone help in…
Pratik Rawlekar
  • 327
  • 4
  • 14
-2
votes
1 answer

How to get JComboBox Auto-suggestion

Friends, in this project I need a list suggestion as the user types. I have looked at many examples and have started work on it and it somewhat works. The problem is, it only shows the suggestions for the first letter typed and when the second…
user2827435
  • 39
  • 1
  • 2
  • 7
1 2 3 4
5