From 01fc3a96d436b0ced7d888049228b5a764a0fcdf Mon Sep 17 00:00:00 2001 From: jjh Date: Tue, 26 Dec 2023 10:50:30 +0900 Subject: [PATCH] =?UTF-8?q?dateTimeFormat=20=EC=88=98=EC=A0=95.=20=20=20da?= =?UTF-8?q?teTimeFormat.format(value)=20=20->=20=20datetimeFormat.format(v?= =?UTF-8?q?alue)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/webapp/resources/js/base/base-fims.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/webapp/resources/js/base/base-fims.js b/src/main/webapp/resources/js/base/base-fims.js index 85131b00..1efd13e3 100644 --- a/src/main/webapp/resources/js/base/base-fims.js +++ b/src/main/webapp/resources/js/base/base-fims.js @@ -92,7 +92,7 @@ class FimsFormFields extends FormFields { const fmtType = input.dataset.fmtType; switch (fmtType) { case 'dt' : - value = dateTimeFormat.format(value); + value = datetimeFormat.format(value); break; case 'day' : value = dateFormat.format(value); @@ -136,7 +136,7 @@ class FimsFormFields extends FormFields { } else if("checkbox" == input.type) { if(input.checked){ if(obj[property]){ - obj[property] += ","+value; + obj[property] += ","+value; } else { obj[property] = value; } @@ -174,10 +174,10 @@ class FimsFormFields extends FormFields { $.fn.getHeaderInfo = function() { var excelTitle = []; var excelTitleWidth = []; - + this.each(function(){ var title = $(this).text(); - + if(title != ""){ excelTitle.push(title); var titleWidth = $(this).outerWidth(); @@ -185,7 +185,7 @@ $.fn.getHeaderInfo = function() { excelTitleWidth.push(titleWidth); } }); - + return { excelTitle : excelTitle.join(","), excelTitleWidth : excelTitleWidth.join(",")