mirror of
https://git.code.sf.net/p/seeddms/code
synced 2024-11-26 15:32:13 +00:00
focus folder selection after loading page
This commit is contained in:
parent
55df94a993
commit
92ba1a9e76
|
@ -34,6 +34,12 @@ class SeedDMS_View_MoveDocument extends SeedDMS_Theme_Style {
|
|||
function js() { /* {{{ */
|
||||
header('Content-Type: application/javascript; charset=UTF-8');
|
||||
|
||||
?>
|
||||
$(document).ready( function() {
|
||||
$('input[id^=choosefoldersearch]').focus();
|
||||
});
|
||||
<?php
|
||||
|
||||
// $this->printFolderChooserJs("form1");
|
||||
} /* }}} */
|
||||
|
||||
|
|
|
@ -34,6 +34,11 @@ class SeedDMS_View_MoveFolder extends SeedDMS_Theme_Style {
|
|||
function js() { /* {{{ */
|
||||
header('Content-Type: application/javascript; charset=UTF-8');
|
||||
|
||||
?>
|
||||
$(document).ready( function() {
|
||||
$('input[id^=choosefoldersearch]').focus();
|
||||
});
|
||||
<?php
|
||||
// $this->printFolderChooserJs("form1");
|
||||
} /* }}} */
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user