Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
3k views

Search button inside the search box like Bing

How can I implement a search button inside the search box, as seen on a site like Bing?
2
votes
1answer
138 views

Designing a one EVERYTHING search box (date+address+keywords)

I'm storing information about local "events". They are described by 3 things - address, date, keywords(tags). I want to have only one search box for at least address and keywords. The date might go to ...
2
votes
6answers
4k views

What is the CSS secret of the Google search box?

I am studying the css methods Google uses to create their ui. I realized that the css code on their home page contains no reference to their search box; it seems like just a naked input tag, with not ...
1
vote
2answers
63 views

How to create Search Box without using plug-ins?

I'm new to this and doing some research on how to create a Search Box from scratch (without using plug-ins like Google, etc). The idea is to search within a particular website NOT all websites like ...
1
vote
1answer
139 views

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: <?php $block = ...
1
vote
1answer
289 views

Android: quick search to map results

Does anyone know how to activate a map from a quick search box? My app displays the users location and some places pulled from my website. I have added a quick search box, following instruction from ...
1
vote
2answers
270 views

wxPython: how to listen to EVT_KEY_DOWN on SearchCtrl?

In my application I want a search box, probably like the one provided by wx.SearchCtrl, with the search button and the cancel button included. I also want to know when the user presses Up or Down, so ...
1
vote
1answer
168 views

Android : collect Quick Search Box result form internet

I'm doing a app which allow user to search on the server. how can i get the text from the Quick Search Box and send to server? if (Intent.ACTION_SEARCH.equals(intent.getAction())) { String ...
1
vote
3answers
215 views

What is the best way to do a nav bar search box in Django?

I would like to have a search box integrated into a nav bar that appears on the top of each page (hey, there is an example of what I am talking about up there at the top of this StackOverflow page). ...
1
vote
1answer
407 views

How to give parameters in the url?

The question raised from the question here. In order to have search engines in Browser, I need to find a way to get the parameters to url. Suppose you have Google Sites where you have Google Gadget. ...
0
votes
0answers
26 views

Youtube search page inside my app

in my app there are two textfield where you can perform a search on youtube. The final search string produced is like the following: ...
0
votes
0answers
10 views

Dropdown Search + Views Without Using Taxonomy - Drupal

Okay, so I have been searching Google for weeks on how to do this, and I have kludged some stuff together. I want to combine a dropdown for year values, and combine it with a search box. Now, I've ...
0
votes
0answers
47 views

add sphider search to my page

I have a template made and I have to add only the search box to finish it. I don't know how to add the search page into its place. Actually I managed to add the search box to its place, but the ...
0
votes
1answer
70 views

Searchbox not working

I'd like to implement bar where main menu is on the left and searchbox is on the right. My codes are: <div id="divMenu"> <div id="menu"> <ul> <li><a ...
0
votes
0answers
60 views

Search box to search through activities

I'm just getting started with android but I want to make a search box to search my activities. Let's say that I have 4 activities: one, two, three, four. Now I want to have a search box so that ...
0
votes
1answer
111 views

Parsing Xml, displaying it in a ListView and adding a Search Box

I'm here... again, having a lot of problems. First, my app is parsing a local xml. public class CountiesHandler { final int stateUnknown = 0; final int stateContinente = 1; final ...
0
votes
1answer
69 views

How to remove Search Box from page if no result?

I have two search boxes, one on top, and one on bottom. The content is in the middle, if found no results, how do I remove one of them? (bottom one) Thanks I got this for the form: <form ...
0
votes
3answers
609 views

implementing autocomplete in my website

i am developing a website where i intend to provide the search feature. I am developing it in PHP/MYSQL and i have written the script to perform the search. I wish to provide autocomplete or suggested ...