Questions tagged [search-box]

A search box or search field is a common GUI element used in computer programs

A search box or search field is a common GUI element used in computer programs, such as file managers or web browsers, and on web sites. A search box is usually a single-line text box with the dedicated function of accepting user input to be searched for in a database. Search boxes on web pages are usually used to allow users to enter a query to be submitted to a Web search engine server-side script, where an index database is queried for entries that contain one or more of the user's keywords.

Search boxes are commonly accompanied by a search button (sometimes indicated only by a magnifying glass symbol) to submit the search, although a search button may be omitted as the user may press the enter key to submit the search, or the search may be sent automatically to present the user with real-time results. Common Features

Depending on the particular implementation, a search box may be accompanied by a drop-down list to present the user with past searches or search suggestions. Search boxes may have other features to help the user, such as autocomplete, search suggestions, a spelling checker, etc. Search boxes are often also accompanied by drop-down menus or other input controls to allow the user to restrict the search or choose what type of content to search for.

Common Search bar

Common Search bar

Credit goes to Wikipedia

273 questions
3
votes
2 answers

How to add a search box in open layers 3

I tried an example of open layers 3, it only adds a search box but doesn't search for places, below is that code -
user8888885
3
votes
2 answers

Adding placeholder to text box in google custom search engine in my html website

I have added google custom search engine using following code. (function() { var cx = '005899633628958982661:wekn1lpckzg'; var gcse = document.createElement('script'); gcse.type = 'text/javascript'; gcse.async = true; gcse.src =…
atul
  • 134
  • 2
  • 14
3
votes
1 answer

How to use MVC 5 SearchBox to get int ID while searching string CustomerName

My SQL Table: [PAYID] [int] IDENTITY(1,1) NOT NULL, [PaymentCustomer] [int] NOT NULL, [PaymentAmount] [int] NOT NULL, [PaymentLocation] [int] NOT NULL, [PaymentActive] [bit] NOT NULL My SQL Table Value: PAYID PaymentCustomer PaymentAmount …
NTMS
  • 816
  • 7
  • 22
3
votes
2 answers

Detect when user finished writing - Thread.sleep() called in loop

I wanted to build a search that shows you the results when the user finishes writing. If I had to search in a local db I would have triggered the search every time the user releases a key. In my case I have to send Web Requests to an API point that…
3
votes
1 answer

Angular google maps search-box directive : events don't fire when trying to restrict the search (with autocomplete option)

I'm using Angular Google Maps to get a map with a searchbox in it. I'm trying to restrict the search to 'address' and to a country (France), so I'd like to use the 'Autocomplete' option of the search-box directive, as specified in the…
Kate L.
  • 123
  • 2
  • 9
3
votes
2 answers

Search box to search marker (Google Map)

I want to ask about android app that I develop using google map in my apps. I already make multi marker on my map (1323 data so 1323 marker). So the question is: I want to make search box to find specific marker on my map. I dont know how to find.…
2
votes
0 answers

Why I couldn't send blob data from preload to main?

I'm trying the send the blob data from preload script to main process by using ipcRenderer.send(myblob) , it is showing error , Is there any way to send blob data from preload.js to main process
2
votes
1 answer

How to add search box to drupal page contents (404 page)

I have a theme where search box is hard to find. Before redesigning it, I'd like to add another, bigger search box to 404 page. The only solution I found is render search block:
xy2
  • 484
  • 2
  • 9
2
votes
2 answers

Search Box Google sheet

I want to make search box in google sheet.it should be work as slicer. Table of data need to filter using that search box.enter image description here I want to create search box as this excel search box using Google sheet.
2
votes
1 answer

leaflet input search outside of the div map (re-make)

i have a little problem, i'm working on Leaflet maps and i have no idea how could i do that my input search, shows the same results as the input search inside the map, i have looking for answers and some examples, even in the same leaflet…
2
votes
1 answer

R package Googleway. Function: google_map(). Argument: search_box . Parameter to control: SIZE

R version 3.6.2 (2019-12-12) -- "Dark and Stormy Night" Platform: x86_64-apple-darwin15.6.0 (64-bit) Code as per example below (replace "your_key" with the proper Google API key). My question: is there a way to customize the size of the search_box,…
2
votes
0 answers

Left padding in an HTML5 search box causes cursor to jump on focus

The cursor jumps a few characters to the right when clicking on a search box if it has left padding. I have narrowed the problem down to padding-left and type="search". The problem goes away if I remove either left padding or change the input type…
Narendra Rana
  • 391
  • 3
  • 9
2
votes
4 answers

Datatables search box is not showing

I am using Datatables and I found that the searchbox is not appearing near the table. $(document).ready(function() { $('#dfUsageTable').DataTable({ pageLength: 10, filter: true …
Dinesh
  • 16,014
  • 23
  • 80
  • 122
2
votes
1 answer

How to implement SearchBox functionality in incrementally(Lazy) loaded ListView of UWP

I have a ListView in UWP Application which binds 100 items on 1st load, then after loading is completed it binds another 100 i.e. it is incrementally loaded. Here is a code :
ace
  • 225
  • 4
  • 18
2
votes
1 answer

Multi-field type ahead search box in html and javascript

I am trying to create a search box for searching structured data, where all the fields are known. I want to create a type ahead search box which has two types of typeaheads: 1. Type ahead for fields 2. Type ahead for values of a specific field.…
dOps
  • 730
  • 2
  • 7
  • 16
1
2
3
18 19