The plugins site is currently in development.
We've been looking to provide a higher-quality, spam-free experience at the plugins site for some time, and a major error on our part forced us to shut down the current site before we could put the new one in place. We are developing a new site, and you can follow along with its development on GitHub. For more information about this transition, including steps you can take as a plugin author to prepare, please read our post about what's going on.
SexyCombo 2.0.6
Sexy Combo is a jQuery plugin that allows you to turn default browser selectboxes into much more attractive and usable comboboxes. The user can choose whether to select option from the dropdown list or just type it. This widget reaches its maximum efficiency when we have selectboxes with lots of options (e.g. countries or states), so it would be difficult for users to find option in the huge list.
The plugin is usable not only for end users, but also for developers. Sexy Combo has a lot of configuration options so you can modify its behaviour and appearance. FRom this version the core CSS file is separated from the CSS that provides combo's appearance, and now you are able to easily create new skins for the plugin.
Examples
Please view demo page to see the possibilities of Sexy Combo.
Installation
Please follow these instructions to install Sexy Combo:
- Download and unpack the archive.
-
Include jQuery and plugin files to your web page:
<pre>
<script type="text/javascript" src="path_to_plugin/lib/jquery-1.3.2.js"></script>
<script type="text/javascript" src="path_to_plugin/lib/jquery.sexy-combo-2.0.js"></script>
</pre> -
Include core and skin CSS files to your page:
<pre>
<link rel="stylesheet" type="text/css" href="path_to_plugin/lib/sexy-combo.css" />
<link rel="stylesheet" type="text/css" href="path_to_plugin/skins/skin_name/skin_name.css" />
</pre> -
Done! Now make your selectboxes look and behave sexy!
<pre>
$("select").sexyCombo();
</pre>
Usage and configuration options
Sexy Combo has a number of configuration options that are passed to the plugin in the form of JavaScript object, e.g. $("select").sexyCombo({triggerSelected: true});. The full list of options is:
-
(string) skin- name of the skin that will be applied to the combobox. Default is "sexy" -
(string) suffix- this option allows you to configure text input's name. The suffix will be appended to the name of the selectbox. Default is "__sexyCombo". -
(string) hiddenSuffix- the same as previous, but for the hidden input. Default is "__sexyComboHidden". -
(string) initialHiddenValue- the initial value of the hidden input of the combo. Default is "" (empty string). -
(string) emptyText- if provided, will be shown when an empty text input has no focus. -
(bool) autoFill- if true, user's input will be autofilled with the value of the first item of the dropdown list. Default is false. -
(bool) triggerSelected- if true, the selected option of the selectbox will become the initial value of the combo. Default is false. -
(function) filterFn- a filter function that determines which options should be in the dropdown list. This function takes two parameters - current text input value and dropdown list item's value, and should return true if item should be in the dropdown list, otherwise false. Default is null. -
(bool) dropUp- if true, the dropdown list will appear above text input. Default is false. -
(function) initCallback- function that is called at the end of constrictor. Default is null. -
(function) initEventsCallback- function that is called at the end of initEvents method. Default is null. -
(function) showListCallback- function that is called when the dropdown list appears. Default is null. -
(function) hideListCallback- function that is called when the dropdown list disappears. Default is null. -
(function) changeCallback- function that is called when both text and hidden inputs values are changed. Default is null. -
(function) textChangeCallback- function that is called when text input's value is changed. Default is null.
Note that all callback functions are called in the scope of sexyCombo instance, so you have access to all of its methids / properties.
It is possible to create multiple comboboxes from which users can choose more than one option. All you need is to set "multiple" attribute of your selectbox to true, or set multiple config option to true if you create combo without selectbox. Currently this option does not work with autoFill config option. It will be fixed in one of the futute releases.
You are also able to create combos without using existing selectboxes. If you want to do this, you should use static method of jQuery.sexyCombo object named create, for example:
<pre>
$.sexyCombo.create({
id : "id",
name: "name",
container: "#container",
data: [
{value: "1", text: "First option", selected: true},
{value: "2", text: "Second option"},
{value: "3", text: "Third option"}
]
});
</pre>
Below is the list of configuration options for static creating of comboboxes. You can pass them to the create method together with options we have discussed above.
(string) name- the name of the selectbox that will be created. Optional. Default is "" (empty string).(string) id- the id of the selectbox that will be created. Optional. Default is "" (empty string)(mixed) container- jQuery selector, jQuery object or DOM element that will hold the widget. Optional. Default is$(document).(array) data- data that contains information about combo's options. This is an array of objects, which should have three properties -value(value of the option) andtext(text that is displayed for this option) and (optionally)selected(if set to true, option's "selected" attribute will be set to true. Makes sence only withtriggerSelectedconfig option set to true). This option is required.-
(string) url- the URL of JSON object that contains data for combo's options. Object's format is the same as fordataoption. If specified,dataoption will be ignored. -
(object) ajaxData- data that will be passed to AJAX request. -
(bool) multiple- if true, the combobox will be multiple. Default is false.
Appearance customization
In this version I have separated core CSS and presentational CSS, so now it's possible to create new skins for Sexy Combo. The download package contains one example skin. Feel free to create your own based on it.
Browser compatibility
Sexy Combo has been tested and works on the following browsers:
- Internet Explorer 6 (PC)
- Internet Explorer 7 (PC)
- Firefox 1.5 (Linux)
- Firefox 2 (Linux)
- Firefox 3 (PC)
- Opera 9 (PC)
In this version I have added some callback functions that you can pass to the plugin. This functions are called when certain events (e.g. dropdown list appearing / disappearing, initialization) occur. See documentation for details.
