From e132f3b5c995889979ec154743edabcaa6d42d97 Mon Sep 17 00:00:00 2001 From: Prathan B Date: Sun, 12 Jul 2020 13:19:39 +0700 Subject: [PATCH] fix error --- wwwroot/js/rep_eva02/rep_eva02_report.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/wwwroot/js/rep_eva02/rep_eva02_report.js b/wwwroot/js/rep_eva02/rep_eva02_report.js index 9504c6e..0f0a83d 100644 --- a/wwwroot/js/rep_eva02/rep_eva02_report.js +++ b/wwwroot/js/rep_eva02/rep_eva02_report.js @@ -1,5 +1,14 @@ var rep_eva02_API = "/api/rep_eva02/"; +function array_to_string_comma(a) { + var x = ""; + $.each(a, function (index, value) { + if (x !== "") x += ","; + x += value; + }); + return x; +} + //================= Search Customizaiton ========================================= function rep_eva02_GetSearchParameter(fileType) {