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
-1
votes
2 answers

I have the list of contacts appear in my android App. I want to create a seachbox. How can I iterate through the list view and remove items?

My code looks like: public class MainActivity extends ListActivity { @Override public int getSelectedItemPosition() { return super.getSelectedItemPosition(); } @Override public long getSelectedItemId() { return…
Code-G
  • 41
  • 5
-1
votes
1 answer

Android: implement search in appbar

In my application I have an app bar like the one in the image below (source: jayway.com) On the left of the appbar I have a TextView and on the right a SearchView and a menu. How can I implement the search action? I would like the searchview…
Jay
  • 145
  • 2
  • 12
-1
votes
2 answers

Make a bootstrap search box functional on blogger

I'm trying to replace my webpage's navbar from the Blogger default to the bootstrap one. I modified the example to only have a search box in the navbar but it doesn't search. How do I do?
-2
votes
1 answer

How to bring data with a search box with typing letters consecutively in Python-Tkinter?

I have created an entry box with tkinter in a page. What I want to do is to convert it into a search box. Whenever I type a letter, I want it to bring me the data that includes these letters from my database. For example when I type "A", I want it…
-2
votes
2 answers

What search box is this?

I want to customize the WHMCS for domain search results. Then customize the results to be shown in a lightbox state. I've seen it in Iranserver, a hosting company. What couldn't find something similar in codepen. Do you guys have any good code i…
Mehdad
  • 1
  • 1
-2
votes
1 answer

What's the best way to make a search box with auto-suggest appearing on top of other elements?

I've made a search box with auto-suggestions. I don't want to have the suggestions push down the other elements on the page. What I did to fix this: I gave the suggestions position: fixed and added a window event listener to update its top and left…
Don't Know
  • 121
  • 2
  • 12
-2
votes
1 answer

Search Box linked to another site not working

I somehow managed to link a search box to the search box form another website, the problem I have it's that when I put the word I'm looking for it does send me to the page and loads my results but immediately the page reloads to a shorter version of…
-2
votes
3 answers

how to disable keyboard in next activity in android studio

i had problem in keyboard . i made search activity and there i call edit text when i search for anything and by clicking that search the keyboard still activate in another activity . how can i stop it. i tried too much but i need someone help…
-2
votes
2 answers

Fire event after searchbox user input

Ok so I want to fire a jquery event, after a user types in the search box. Search box:
Hbaecklund
  • 261
  • 1
  • 4
  • 16
-2
votes
2 answers

How to make a search box like this one?

I want to create a search box like this one. Can anybody help me?
Hannah
  • 25
  • 3
-2
votes
1 answer

PHP go to 'no results' page

I have a search box and the user should type a transaction number to match a specific record. I was wondering how you would code it if nothing was typed and if it doesn't match a record/doesn't exist. I want it to display No Results, something like…
JacksonW
  • 3
  • 4
-2
votes
1 answer

Move search box into top menu - Opencart

I was trying to move the search box into the top menu bar and the result was: fatal error :( I mean: top menu with categories and at the end of them, the search box. So, would somebody help me step by step how to do that without dying in the…
user3476964
  • 19
  • 2
  • 7
-2
votes
1 answer

How can I make a search box in Java

I'm making a program in Java which users can login and upload data to certain people in the program. But, I want to make a search bar so someone can type 'Joe' and it would show anyone with the name 'Joe' in a file. Each name that is registered will…
StackOverload
  • 19
  • 1
  • 1
  • 7
-2
votes
1 answer

How to write firefox addon to change the searchbar on right side to my own search service

Basically I have created one simple search engine in php. I want to create a firefox addon, after installing that it will automatically add my search engine URL to the search box. And this should be default one as now "Google" is the default. So…
1 2 3
18
19