You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.2 KiB
33 lines
1.2 KiB
/*=========================================================================================
|
|
File Name: users-contacts.js
|
|
Description: Users contacts configurations
|
|
----------------------------------------------------------------------------------------
|
|
Item Name: Modern Admin - Clean Bootstrap 4 Dashboard HTML Template
|
|
Version: 1.0
|
|
Author: GeeksLabs
|
|
Author URL: http://www.themeforest.net/user/geekslabs
|
|
==========================================================================================*/
|
|
|
|
$(document).ready(function() {
|
|
|
|
var userDataTable = $('#users-contacts').DataTable();
|
|
// Set the search textbox functionality in sidebar
|
|
$('#search-contacts').on( 'keyup', function () {
|
|
userDataTable.search( this.value ).draw();
|
|
});
|
|
|
|
// Checkbox & Radio 1
|
|
$('.input-chk').iCheck({
|
|
checkboxClass: 'icheckbox_square-blue',
|
|
radioClass: 'iradio_square-blue',
|
|
});
|
|
|
|
userDataTable.on( 'draw.dt', function () {
|
|
// Checkbox & Radio 1
|
|
$('.input-chk').iCheck({
|
|
checkboxClass: 'icheckbox_square-blue',
|
|
radioClass: 'iradio_square-blue',
|
|
});
|
|
});
|
|
|
|
}); |