Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am developing a mobile shop web application in php. It having a combobox which may contain hundreds of elements. So very difficult to search an option from that list.

How i can create a combobox with a text editing field.?

share|improve this question
1  
muahahaha Finally! A use for my jQuery Plugin github.com/kmacey1249/heftybox/tree/dievardump – Kyle Macey Mar 8 '12 at 4:30

1 Answer

up vote 1 down vote accepted

As you are using JQuery, I think using Chosen is a good way to enhance your combo box.

The plugin adds a text box so that users can easily search your combo list. In addition, you might also wish to use optgroups to group the selections for easier readability.

Chosen is very flexible, so you shuold be able to tailor it to your needs.

share|improve this answer
Thanks allot. It working properly in IE-08,09,Mozilla,chrome. But not working in IE 07. – Fas K K Fasil Mar 8 '12 at 8:31
This plugin for searching or add multiple options.what i should do when i need to add if it is not exit. Means if not find in searching it act as a text box. – Fas K K Fasil Mar 8 '12 at 10:46
If that is the case, I think you are looking for the "autocomplete" pattern. In that case, this plugin would be more suitable: code.drewwilson.com/entry/autosuggest-jquery-plugin – F21 Mar 8 '12 at 12:34
Using this query i can add choose multiple options. But I dont want like this. I just need drop down list which can useful to fined element but it cant select multiple values. – Fas K K Fasil Mar 12 '12 at 3:23
Finally i solved my problem. jqueryui.com/demos/autocomplete/#combobox – Fas K K Fasil Mar 12 '12 at 4:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.