+
+

Core options

+ +

+ Select2 supports a small subset of options in every build that is + generated. Each option typically has a decorator that is required that + wraps an adapter, adding support for the option. This is only required + when a custom adapter is being used, as Select2 will build the required + adapters by default. +

+ +

+ Select2 will automatically apply decorators to any adapters which have not + been manually overridden. The only time you need to decorate adapters is + when you are using third-party adapters not provided by Select2, or you + are using features not provided in the Select2 core. You can apply a + decorator to an adapter using the + Utils.Decorate method provided with + Select2. +

 $.fn.select2.amd.require(
@@ -36,35 +47,35 @@ $.fn.select2.amd.require(
 });
 
-

- All core options that use decorators or adapters will clearly state it - in the "Decorator" or "Adapter" part of the documentation. Decorators are - typically only compatible with a specific type of adapter, so make sure to - note what adapter is given. -

+

+ All core options that use decorators or adapters will clearly state it + in the "Decorator" or "Adapter" part of the documentation. Decorators are + typically only compatible with a specific type of adapter, so make sure to + note what adapter is given. +

-

- Declaring configuration in the data-* attributes -

+

+ Declaring configuration in the data-* attributes +

-

- It is recommended that you declare your configuration options for Select2 - when initializing Select2. You can also define your configuration options - by using the HTML5 data-* attributes, which will override - any options set when initializing Select2 and any defaults. -

+

+ It is recommended that you declare your configuration options for Select2 + when initializing Select2. You can also define your configuration options + by using the HTML5 data-* attributes, which will override + any options set when initializing Select2 and any defaults. +

-

- This means that if you declare your <select> tag as... -

+

+ This means that if you declare your <select> tag as... +

 <select data-tags="true" data-placeholder="Select an option"></select>
 
-

- Will be interpreted the same as initializing Select2 as... -

+

+ Will be interpreted the same as initializing Select2 as... +

 $("select").select2({
@@ -73,22 +84,22 @@ $("select").select2({
 });
 
-

- You can also define nested configurations, which are typically needed for - options such as AJAX. Each level of nesting should be separated by two - dashes (--) instead of one. Due to - a jQuery bug, - nested options using data-* attributes - do not work in jQuery 1.x. -

+

+ You can also define nested configurations, which are typically needed for + options such as AJAX. Each level of nesting should be separated by two + dashes (--) instead of one. Due to + a jQuery bug, + nested options using data-* attributes + do not work in jQuery 1.x. +

 <select data-ajax--url="http://example.org/api/test" data-ajax--cache="true"></select>
 
-

- Which will be interpreted the same as initializing Select2 with... -

+

+ Which will be interpreted the same as initializing Select2 with... +

 $("select").select2({
@@ -99,133 +110,133 @@ $("select").select2({
 });
 
-

- The value of the option is subject to jQuery's - parsing rules for - HTML5 data attributes. -

+

+ The value of the option is subject to jQuery's + parsing rules for + HTML5 data attributes. +

-

- AMD compatibility -

+

+ AMD compatibility +

-

- You can find more information on how to integrate Select2 with your - existing AMD-based project by - viewing the 4.0 release notes. - Select2 automatically loads some modules when the adapters are being - automatically constructed, so those who are using Select2 with a custom - AMD build using their own system may need to specify the paths that are - generated to the Select2 modules. -

+

+ You can find more information on how to integrate Select2 with your + existing AMD-based project by + viewing the 4.0 release notes. + Select2 automatically loads some modules when the adapters are being + automatically constructed, so those who are using Select2 with a custom + AMD build using their own system may need to specify the paths that are + generated to the Select2 modules. +

-
-
-
-
Key
-
- amdBase -
+
+
+
+
Key
+
+ amdBase +
-
Default
-
- select2/ -
-
-
-
-
-
Key
-
- amdLanguageBase -
+
Default
+
+ select2/ +
+
+
+
+
+
Key
+
+ amdLanguageBase +
-
Default
-
- select2/i18n/ -
-
-
-
- -

- Display -

- -

- Select2 provides options that allow you to directly affect how the - container that holds the current selection is displayed. -

- -

- Placeholders -

- -

- Select2 can display a placeholder for a single-value select that will - replace an option, or be shown when no options are selected for - multiple-value selects. You can find an example on the - example page. -

- -
-
-
-
Key
-
- placeholder -
- -
Value
-
string or object
-
- -
- -
-
Adapter
-
- SelectionAdapter -
- -
Decorator
-
- Placeholder - and - HidePlaceholder -
-
-
- -
-
- Heads up! - Because browsers assume that the first option in - single-value select boxes is selected, you should add an empty - <option></option> tag that the placeholder - should use or it may not work. +
Default
+
+ select2/i18n/ +
+
-