Created
February 27, 2016 08:16
-
-
Save eternaltung/a5b43b34138ddc4f8ea7 to your computer and use it in GitHub Desktop.
Asp.net Web Forms Bootstrap MultiSelect
This file contains hidden or 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
<script type="text/javascript"> | |
$(document).ready(function () { | |
$('#<%=ListBox1.ClientID%>').multiselect({ | |
includeSelectAllOption: true, | |
allSelectedText: 'All Selected', | |
enableFiltering: true, | |
filterPlaceholder: 'Search...' | |
}); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment