diff --git a/src/main/webapp/WEB-INF/jsp/base/actionGroup/select-actionGroup.jsp b/src/main/webapp/WEB-INF/jsp/base/actionGroup/select-actionGroup.jsp index 8f3ef6ac..bcbd16e3 100644 --- a/src/main/webapp/WEB-INF/jsp/base/actionGroup/select-actionGroup.jsp +++ b/src/main/webapp/WEB-INF/jsp/base/actionGroup/select-actionGroup.jsp @@ -27,7 +27,7 @@
+ | ||
---|---|---|
사용자 | 등록일자 | |
{USER_ACNT} | @@ -57,9 +57,9 @@ ${infoPrefix}Control.onUserListChange = obj => { let trs = ${infoPrefix}Control.authorities.isImplicit() ? [document.getElementById("implicitActions").innerHTML.replace(/{authority}/, authority)] : empty ? [document.getElementById("userNotFound").innerHTML] : <%-- from template#${infoPrefix}NotFound --%> - ${infoPrefix}List.inStrings(document.getElementById("userRow").innerHTML); <%-- from template#${infoPrefix}Row --%> - $("#userList").html(trs.join()); - $("#userToggler").prop("checked", false); + ${infoPrefix}List.inStrings(document.getElementById("authUserRow").innerHTML); <%-- from template#${infoPrefix}Row --%> + $("#authUsers").html(trs.join()); + $("#authUserToggler").prop("checked", false); $("#userPaging").setPaging({ list:${infoPrefix}Control.users.dataset, @@ -76,13 +76,13 @@ ${infoPrefix}Control.onCurrentUserChange = item => { let data = item.data; let key = data.AUTH_ID + "-" + data.USER_ID; - $("#userList").setCurrentRow(key); + $("#authUsers").setCurrentRow(key); }; ${infoPrefix}Control.onUserSelect = selected => { let ${infoPrefix}List = ${infoPrefix}Control.users.dataset; let keys = selected.map(e => ${infoPrefix}List.getKey(e)); - $("#userList input[type='checkbox']").each(function() { + $("#authUsers input[type='checkbox']").each(function() { let checkbox = $(this); checkbox.prop("checked", keys.includes(checkbox.val())); }); diff --git a/src/main/webapp/resources/js/base/actionGroup.js b/src/main/webapp/resources/js/base/actionGroup.js index f6896e34..576847ec 100644 --- a/src/main/webapp/resources/js/base/actionGroup.js +++ b/src/main/webapp/resources/js/base/actionGroup.js @@ -66,6 +66,7 @@ class ActionGroupControl { dialog.open({ title:"기능그룹 선택", content:resp, + size: "lg", getData:() => {return getSelectedActionGroup();}, onOK:(selected) => resolve(selected) });