|
|
@@ -1006,6 +1006,15 @@ var gagaAgGrid = {
|
|
|
},
|
|
|
success : function(data) {
|
|
|
try {
|
|
|
+ // 태그 치환
|
|
|
+ $(data).each(function(idx, item) {
|
|
|
+ if (typeof item.brandEnm != "undefined" && !gagajf.isNull(item.brandEnm)) item.brandEnm = item.brandEnm.replaceAll('&', '&').replaceAll('>', '>').replaceAll('<', '<').replaceAll(' ', ' ');
|
|
|
+ if (typeof item.brandKnm != "undefined" && !gagajf.isNull(item.brandKnm)) item.brandKnm = item.brandKnm.replaceAll('&', '&').replaceAll('>', '>').replaceAll('<', '<').replaceAll(' ', ' ');
|
|
|
+ if (typeof item.brandGroupNm != "undefined" && !gagajf.isNull(item.brandGroupNm)) item.brandGroupNm = item.brandGroupNm.replaceAll('&', '&').replaceAll('>', '>').replaceAll('<', '<').replaceAll(' ', ' ');
|
|
|
+ if (typeof item.brandGroupKnm != "undefined" && !gagajf.isNull(item.brandGroupKnm)) item.brandGroupKnm = item.brandGroupKnm.replaceAll('&', '&').replaceAll('>', '>').replaceAll('<', '<').replaceAll(' ', ' ');
|
|
|
+ if (typeof item.brandGroupEnm != "undefined" && !gagajf.isNull(item.brandGroupEnm)) item.brandGroupEnm = item.brandGroupEnm.replaceAll('&', '&').replaceAll('>', '>').replaceAll('<', '<').replaceAll(' ', ' ');
|
|
|
+ });
|
|
|
+
|
|
|
gridOptions.api.setRowData(data);
|
|
|
} catch (e) {
|
|
|
console.log(e);
|
|
|
@@ -1045,6 +1054,15 @@ var gagaAgGrid = {
|
|
|
},
|
|
|
success : function(data) {
|
|
|
try {
|
|
|
+ // 태그 치환
|
|
|
+ $(data).each(function(idx, item) {
|
|
|
+ if (typeof item.brandEnm != "undefined" && !gagajf.isNull(item.brandEnm)) item.brandEnm = item.brandEnm.replaceAll('&', '&').replaceAll('>', '>').replaceAll('<', '<').replaceAll(' ', ' ');
|
|
|
+ if (typeof item.brandKnm != "undefined" && !gagajf.isNull(item.brandKnm)) item.brandKnm = item.brandKnm.replaceAll('&', '&').replaceAll('>', '>').replaceAll('<', '<').replaceAll(' ', ' ');
|
|
|
+ if (typeof item.brandGroupNm != "undefined" && !gagajf.isNull(item.brandGroupNm)) item.brandGroupNm = item.brandGroupNm.replaceAll('&', '&').replaceAll('>', '>').replaceAll('<', '<').replaceAll(' ', ' ');
|
|
|
+ if (typeof item.brandGroupKnm != "undefined" && !gagajf.isNull(item.brandGroupKnm)) item.brandGroupKnm = item.brandGroupKnm.replaceAll('&', '&').replaceAll('>', '>').replaceAll('<', '<').replaceAll(' ', ' ');
|
|
|
+ if (typeof item.brandGroupEnm != "undefined" && !gagajf.isNull(item.brandGroupEnm)) item.brandGroupEnm = item.brandGroupEnm.replaceAll('&', '&').replaceAll('>', '>').replaceAll('<', '<').replaceAll(' ', ' ');
|
|
|
+ });
|
|
|
+
|
|
|
gridOptions.api.setRowData(data);
|
|
|
} catch (e) {
|
|
|
console.log(e);
|