From 3022a95b094626d640e8773645e9e008ae5fc8b1 Mon Sep 17 00:00:00 2001 From: leebj Date: Wed, 24 Sep 2025 10:08:56 +0900 Subject: [PATCH] =?UTF-8?q?validate=EC=B2=B4=ED=81=AC=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/webapp/resources/applib/js/app-support.js | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/main/webapp/resources/applib/js/app-support.js b/src/main/webapp/resources/applib/js/app-support.js index 2779be1..d9421ec 100644 --- a/src/main/webapp/resources/applib/js/app-support.js +++ b/src/main/webapp/resources/applib/js/app-support.js @@ -122,11 +122,22 @@ class AppSupport { * validation **************************************************************************/ static customValidate(targetArr) { + var handler = validationFailureHandler(); + handler.notice = function(msg, input) { + dialog.alert({ + content:msg, + onClose:function(){input.focus();}, + init: function(){ + AppSupport.setDialogZindex(); + } + }); + }; + for(var i=0;i