Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
4answers
796 views

Are there good UI patterns for designing search forms with many fields?

I'm having a difficult time finding any resources that describe good UI patterns for large search forms. I have a form that requires 20+ possible inputs and can't come up with a design I feel good ...
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
155 views

PHP & MySQL - Making a Filterable Search (example provided)

I'm putting together a practice site utilizing PHP and MySQL to replicate (or closely resemble) this site. As of right now my searchable fields include: Rent (min-max), Type of rental (any, apartment, ...
1
vote
2answers
577 views

How do I create an autocomplete search form in rails 3 using rails3-jquery-autocomplete?

I am using this gem: https://github.com/crowdint/rails3-jquery-autocomplete I am having difficulty making the auto-complete work and also to create a simple search. This is what I have in the view: ...
1
vote
1answer
155 views

Drupal Custom Form with Filters

I'm displaying cars on a page created with a view and displays. I want to be able to create a form on the home page to allow people to select the 'make', which will then update the 'models' list ...
0
votes
1answer
43 views

Change search form behaviour

How do I separately style the text inside the search field (on the right) in my website? I want to have light grey color when there's a default text (SEARCH) and I want a black color when a person ...
0
votes
1answer
197 views

How can I use the liferay-ui:search-form tag to specify a JSP containing my search form?

I have a JSP, say view.jsp, that's using the basic Liferay search container pattern: <liferay-ui:search-container> <liferay-ui:search-form page="..." /> ... ...
0
votes
0answers
133 views

custom wp_dropdown_categories items in wordpress

I have the wp_dropdown_categories function in my searchform.php file. Right now it lets the user choose what post category they want to search in. Is there a way I can get the drop down to include a ...
0
votes
1answer
83 views

Search form with ajax and GET

I've a form for searching users in my site (django). <form method="post" action="" id="search_form"> <table class="table_form"> <tr> <td><input ...
0
votes
1answer
128 views

django: search forms and redirect

After processing form from POST I should redirect, to prevent user from hitting back. However, I am using form to determine search query on a database, so I need to either pass params to the ...
0
votes
1answer
1k views

Need Help with Magento Mini-Search

I have the below code courtesy to Edmond's Ecommerce that converts Magento's standard mini-search form to a more detailed mini-search like the ones seen in Amazon and eBay. At this juncture, I'm able ...