From 39c51fb4a888071aa76bb63ae2ce4809a0a03643 Mon Sep 17 00:00:00 2001 From: leebeomjun Date: Wed, 28 Feb 2024 14:15:53 +0900 Subject: [PATCH] =?UTF-8?q?=EC=97=91=EC=85=80=EC=A0=80=EC=9E=A5=20?= =?UTF-8?q?=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/js/base/base-fims.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/main/webapp/resources/js/base/base-fims.js b/src/main/webapp/resources/js/base/base-fims.js index dd2bf21e..c996af2d 100644 --- a/src/main/webapp/resources/js/base/base-fims.js +++ b/src/main/webapp/resources/js/base/base-fims.js @@ -286,13 +286,16 @@ function getCellDefs($th, $td){ for(var i=0; i < $th.length; i++){ var label = $th.eq(i).text(); + label = label.replace("\n", ""); + label = label.replace("\t", ""); + label = label.replace(" ", ""); if(label != ""){ var width = $th.eq(i).outerWidth(); width = Math.ceil(width/10) + 2; - var field; + var field = ""; if($td.eq(i).hasClass("privacy-cell")){ field = $td.eq(i).find("span:eq(0)").text(); } else { @@ -300,6 +303,9 @@ function getCellDefs($th, $td){ } field = field.replace("{", ""); field = field.replace("}", ""); + field = field.replace("\n", ""); + field = field.replace("\t", ""); + field = field.replace(" ", ""); var cellDef = { label : label,