Merge branch 'tolag3'

This commit is contained in:
leejunho 2024-11-27 10:47:43 +09:00
parent 5e81d7ffb6
commit 38a2c87129
2 changed files with 18 additions and 3 deletions

View File

@ -188,4 +188,16 @@ public class FairnetUtils {
return innorixFileListInfoStr; return innorixFileListInfoStr;
} }
public void sessionSet(
HttpServletRequest reqeust
, String certNm
, String certNo
) {
HttpSession session = reqeust.getSession();
session.setAttribute("certNm", certNm);
session.setAttribute("certNo", certNo);
}
} }

View File

@ -79,8 +79,10 @@ function jstreeInit() {
} }
}, },
"plugins" : [ "plugins" : [
"contextmenu", "dnd", "search", "contextmenu"
"types" // , "dnd"
, "search"
, "types"
] ]
}) })
.bind('loaded.jstree', function(e, data) { .bind('loaded.jstree', function(e, data) {
@ -296,7 +298,8 @@ function jstreeInit() {
} else { } else {
data.instance.refresh(); data.instance.refresh();
} }
}) ; })
;
} }