Created
October 31, 2016 05:58
-
-
Save imwilsonxu/cfbb48fb84adf5039e412861a5263b3f to your computer and use it in GitHub Desktop.
Auto highlight selected value for bootstrap-select.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
$(".selectpicker").on("loaded.bs.select", function(e) { | |
if ($(this).val() > 0) { | |
$(this).selectpicker('setStyle', 'btn-warning', 'add'); | |
} | |
}).on("changed.bs.select", function(e) { | |
if ($(this).val() > 0) { | |
$(this).selectpicker('setStyle', 'btn-warning', 'add'); | |
} else { | |
$(this).selectpicker('setStyle', 'btn-warning', 'remove'); | |
$(this).selectpicker('setStyle', 'btn-default', 'add'); | |
} | |
}); | |
}()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment