mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-09 23:20:27 +00:00
Fixed iCheck for multiple pages
This commit is contained in:
parent
971d6b2e28
commit
9855bc70dc
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user