{{ page.title }}
@@ -142,7 +142,7 @@
diff --git a/select2-latest.html b/select2-latest.html
index 8a9a968e..07ede0fc 100644
--- a/select2-latest.html
+++ b/select2-latest.html
@@ -37,7 +37,8 @@ function format(state) {
}
$("#e4").select2({
formatResult: format,
- formatSelection: format
+ formatSelection: format,
+ escapeMarkup: function(m) { return m; }
});
});
@@ -106,7 +107,8 @@ $("#e6").select2({
},
formatResult: movieFormatResult, // omitted for brevity, see the source of this page
formatSelection: movieFormatSelection, // omitted for brevity, see the source of this page
- dropdownCssClass: "bigdrop" // apply css that makes the dropdown taller
+ dropdownCssClass: "bigdrop", // apply css that makes the dropdown taller
+ escapeMarkup: function (m) { return m; } // we do not want to escape markup since we are displaying html in results
});
});
@@ -137,7 +139,8 @@ $("#e7").select2({
},
formatResult: movieFormatResult, // omitted for brevity, see the source of this page
formatSelection: movieFormatSelection, // omitted for brevity, see the source of this page
- dropdownCssClass: "bigdrop" // apply css that makes the dropdown taller
+ dropdownCssClass: "bigdrop", // apply css that makes the dropdown taller
+ escapeMarkup: function (m) { return m; } // we do not want to escape markup since we are displaying html in results
});
});
@@ -997,7 +1000,7 @@ $(document).ready(function () {
Only applies to single-value select boxes
-
maximumSelectionSize
int
+
maximumSelectionSize
int/function
The maximum number of items that can be selected in a multi-select control. If this number is less than 1 selection is not limited.