Tagged Questions
The suggestbox tag has no wiki summary.
4
votes
2answers
214 views
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 ...
3
votes
2answers
740 views
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 ...
2
votes
2answers
72 views
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:
<div id="streamSuggestBox">
<table> <tbody><tr> <td> <div class="gwt-Label ...
2
votes
1answer
68 views
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 ...
1
vote
2answers
61 views
WebDriver and GWT Suggest Boxes
Ok...I give up :)
What is the best way to select values out of a GWT Suggest Box using
WebDriver? I'm using FirefoxDriver, and so far nothing seems to pick
values out of a GWT suggestBox...not ...
1
vote
1answer
30 views
SuggestBox for TextArea in gwt
I want suggestions in suggestBox that is constructed from TextArea to be shown under the current line in text area, because by default it is shown under the whole text area. How can i implement such ...
1
vote
1answer
107 views
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 ...
1
vote
2answers
146 views
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.
1
vote
0answers
198 views
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 ...
1
vote
1answer
228 views
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. ...
1
vote
2answers
709 views
ASP.NET Why session_end event is not getting called when we close a browser?
Why session_end event is not getting called when we close a browser ?
0
votes
0answers
31 views
Using rich:tree component in suggestionBox
I have created a one tree (component of richfaces) in richfaces. And I want to use this component through suggestionBox . But suggestion box had designed tables(via colums) and it don't permit this ...
0
votes
0answers
122 views
set value by id in gwt suggest box
I have been using gwt seggest box in my project. I need to set id(int) and value(string) into suggest box.
MultiWordSuggestOracle oracle = new MultiWordSuggestOracle();
oracle .add("abc");
...
0
votes
1answer
230 views
Select All On Focus of GWT SuggestBox
I've been searching and searching and can't find a usable example of selecting all text within a GWT SuggestBox widget on focus. I understand you have to attach a focusListener to the widget, but then ...
0
votes
0answers
228 views
Problems with GWT suggest box and “scrollTop” property
I'm using standard GWT suggest box with TextArea element with fixed height. I want TextArea to increase its height once scroller appears (several lines are inserted in the TextArea). I monitor ...
-1
votes
1answer
186 views
Anybody knows how to make the JSon suggest close on click?
i'm using this json suggest box
and i was wondering if there's a way to include an option to make it close when the user click on somewhere else?
else right now unless the user select something, the ...