git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_PROFIND_Web/trunk@72 3fe1ab16-cfe0-e34b-8c9f-7d8c168d430d
19 lines
522 B
JavaScript
19 lines
522 B
JavaScript
|
|
profind_grid = {
|
|
init: function() {
|
|
profind.fixPaginationPos();
|
|
},
|
|
fixPaginationPos: function() {
|
|
$row = $("<div class=\'row\'/>");
|
|
$row.appendTo(".dataTables_wrapper");
|
|
|
|
$column1 = $("<div class=\'span6\'/>");
|
|
$column2 = $("<div class=\'span6\'/>");
|
|
$column1.appendTo($row);
|
|
$column2.appendTo($row);
|
|
|
|
$column1.append($(".dataTables_wrapper .dataTables_info"));
|
|
$column2.append($(".dataTables_wrapper .pagination"));
|
|
}
|
|
}
|