mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2025-07-01 20:06:18 +00:00
Fixed iCheck for multiple pages
This commit is contained in:
@ -74,13 +74,16 @@
|
|||||||
{% block extrascripts %}
|
{% block extrascripts %}
|
||||||
<script>
|
<script>
|
||||||
// set up user data table
|
// set up user data table
|
||||||
$("#tbl_users").DataTable({
|
$(document).ready(function(){
|
||||||
"paging" : true,
|
var table = $('#tbl_users').DataTable({
|
||||||
"lengthChange" : false,
|
'drawCallback': function(settings){
|
||||||
"searching" : true,
|
// iCheck for checkbox and radio inputs
|
||||||
"ordering" : true,
|
$('input[type="checkbox"]').iCheck({
|
||||||
"info" : true,
|
checkboxClass: 'icheckbox_square-blue',
|
||||||
"autoWidth" : false
|
increaseArea : '20%'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
// handle revocation of privileges
|
// handle revocation of privileges
|
||||||
|
Reference in New Issue
Block a user