Zendash - Admin Dashboard HTML Template

Input-Mask

Input-Mask is very simple to use as a jQuery plug-in with a huge range of customizable option..

1. You need to add these files to make it work.
	
		
	
	
	
		
	
	
Type URL
Plugin Link https://datatables.net/examples/styling/bootstrap4
Select2

Select2 is a jQuery based replacement for select boxes. It supports searching, remote data sets, and infinite scrolling of results.General Select2 HTML structure in Zendash template. Here is the Folder structure.

	
		
		
	
	
		
		
	
    
<!-- Select2 js -->
<script src="../../assets/plugins/select2/js/select2.min.js"></script>

		
	


// ______________Select2 with Search
$('.select2').select2({
	placeholder: 'Choose one',
	searchInputPlaceholder: 'Search',
	 width: '100%'
});


// ______________Select2 without Search
$('.select2-no-search').select2({
	minimumResultsForSearch: Infinity,
	placeholder: 'All categories',
	 width: '100%'
});


		
	
Type URL
Plugin Link https://select2.org/