mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-08 20:46:05 +00:00
add button to select all files
This commit is contained in:
parent
dced01d023
commit
1cb1ffb436
|
@ -67,6 +67,18 @@ class SeedDMS_View_LogManagement extends SeedDMS_Bootstrap_Style {
|
|||
|
||||
if ($print_header) printMLText("empty_notify_list");
|
||||
else print "<tr><td><i class=\"icon-arrow-up\"></i></td><td colspan=\"2\"><button type=\"submit\" class=\"btn\"><i class=\"icon-remove\"></i> ".getMLText('remove_marked_files')."</button></td></tr></table></form>\n";
|
||||
echo "<script>\n";
|
||||
?>
|
||||
$(document).ready( function() {
|
||||
$('i.icon-arrow-up').on('click', function(e) {
|
||||
//var checkBoxes = $("input[type=checkbox]");
|
||||
//checkBoxes.prop("checked", !checkBoxes.prop("checked"));
|
||||
$('input[type=checkbox]').prop('checked', true);
|
||||
});
|
||||
|
||||
});
|
||||
<?php
|
||||
echo "</script>\n";
|
||||
} /* }}} */
|
||||
|
||||
function show() { /* {{{ */
|
||||
|
|
Loading…
Reference in New Issue
Block a user