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
1
vote
1 answer

how to enforce selection from the suggestBox list in gwt

Hie We are using a gwt SuggestBox which shows suggestions as user starts typing into this box. however, there is a possibility that end user just type something and do not select anything from the list. we want to avoid this use case and display…
Vik
  • 8,721
  • 27
  • 83
  • 168
0
votes
1 answer

GWT-suggestbox style

I tried the example code from this side to learn the SuggestBox in GWT. http://gwt.google.com/samples/Showcase/Showcase.html#!CwSuggestBox I have no idea where i connect the style with the SuggestBox. I use uiBinder... in the class:…
user959456
  • 565
  • 1
  • 9
  • 13
0
votes
0 answers

how to implement text marking in dom and show popup like grammar checker apps?

Want to create a browser extension which will underline specific texts in browser dom. And on click, that text will show a popup with suggestion. like this:
0
votes
0 answers

ajax suggestion box not working on windows 11 if logged in as an administrator

For a text form on my site, I have a suggestion box that delivers matches from a database for possible results as the user types. However, on windows 11 the text disappears as soon as it is selected from the suggestion box. This occurs both in…
0
votes
0 answers

how to implement a popper menu like vscode intellisense in react js?

i want to create a popper menu in a contenteditable div with text suggestions. Tried with Tippyjs, Popper js but did not work well. here is a sampe picture from vscode:
0
votes
2 answers

How do I increase query page size of widget from the default of 100

I am using a suggest box to pull up and select records from a database, but it appears to limit suggestions to the first 100 records in the database. To be specific, the 101st record will not appear as a suggestion. I have read that "query page…
Mike C
  • 25
  • 3
0
votes
0 answers

How do I bind the value from the Address suggest box to the customer's Address field?

I have an input form in App Maker that a user can enter contact information for projects we're working on (name, phone number, email and address), that works fine but I wanted to implement a better way to input addresses. All that contact info is…
0
votes
1 answer

How do I use a string to show Data in AutoSuggestBox in UWP

I am trying to to use an AutoSuggestBox to Display the Data as being typed from a string. I have tried making an array with some words that will be shown in the AutoSuggestBox as the user types, I however need the Data from the API which is being…
Znibba
  • 15
  • 4
0
votes
1 answer

Query script not run in suggest box

In AppMaker, one my datasources has a simple query script associated with, because I need a filter everytime the datasource is requested. I'm talking about a normal SQL based datasource (not calculated). Is it normal than this query script is not…
Valentin Coudert
  • 1,759
  • 3
  • 19
  • 44
0
votes
1 answer

How to get the suggest attached to the text input?

I know I can get the list within the Webix ui.combo's suggest as var list = $$("combo").getPopup().getList(); And then use the list's API. But how to do the same for the suggest attached to the text input (ui.text)? In other words, is it possible…
rannat
  • 69
  • 7
0
votes
1 answer

How to implement client-side filtering for static options loaded from the server?

I'm trying to set ui.combo's options as a URL: { view:"combo", options:"https://api.myjson.com/bins/qqf81" } http://webix.com/snippet/e31c3414 Options are loaded, but AFAICS in such case text typing triggers the server-side filtering, while I…
drewney
  • 5
  • 4
0
votes
0 answers

GWT Suggestbox only show sugesstions when entered string is in alphabetic order

When I enter some text in suggestbox and if entered string is not matched alphabetically to the suggestions(i.e in suggestionlist); suggestbox do not show suggestions. For example if suggestion list contain "will smith" and I enter "will" in…
0
votes
1 answer

gwt suggestbox doesn't hide on page scroll

I've created a suggest box and generated HTML page with huge text, so I can scroll. 1. Show suggest list 2. Scroll page The popup box with suggestion list moves with scrolled page, but I want that it will neither hide when page scrolls nor move…
skilgal
  • 172
  • 1
  • 4
  • 14
0
votes
2 answers

How to show suggestions in a GWT SuggestBox only after 2 characters have been typed?

I am trying to make a SuggestBox showing suggestions only after 2 characters have been typed. My idea was to hide the suggestions when the text length is 1, using the class DefaultSuggestionDisplay. I have tried to attach different handlers like…
AndreiXwe
  • 723
  • 4
  • 19
0
votes
0 answers

I am using php and ajax for making a suggestion list. not getting the distinct values even if i use keyword distinct in query

I was getting distinct values before I gave the % symbol in regular expression for searching. Here is my code.entries. $arr = []; if(isset($_GET['pat'])) $x = $_GET['pat'].'%'; else $x = '%'; $result = mysqli_query($con, "SELECT distinct…
shamnas cv
  • 11
  • 3