Skip to content

Instantly share code, notes, and snippets.

@eternaltung
Created February 27, 2016 08:16
Show Gist options
  • Save eternaltung/a5b43b34138ddc4f8ea7 to your computer and use it in GitHub Desktop.
Save eternaltung/a5b43b34138ddc4f8ea7 to your computer and use it in GitHub Desktop.
Asp.net Web Forms Bootstrap MultiSelect
<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