From 8b2018430cfad8b3f745ccad8fbb855371f37d5d Mon Sep 17 00:00:00 2001 From: davidstutz Date: Sat, 28 Feb 2015 19:04:35 -0500 Subject: [PATCH] Added FAQ for #475. --- index.html | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/index.html b/index.html index 1a6b0315..603dae1d 100644 --- a/index.html +++ b/index.html @@ -4201,6 +4201,16 @@

Frequently Asked Questions

This is a general issue not directly related to Bootstrap Multiselect: #455.
+ +
How do add icons to the options (#475)?
+
+ Adapt the optionLabel option as follows: +
+optionLabel: function(element){
+    return $(element).attr('label') || $(element).html();
+},
+
+