EX) ,columns : [ ••• {data : "REG_DT", render : function(data){ const year = data.substring(0,4); const month = data.substring(5,7); const day = data.substring(8,10); const regdate = year+'.'+month+'.'+day; return regdate }}, ••• ] ์ปฌ๋ผ๋ช ์ด "REG_DT"์ผ๋ก ๋ค์ด์ค๋ ๋ฐ์ดํฐ ํํ๊ฐ "yyyy-mm-dd"์ด์๋๋ฐ, ์ํ๋ ์ถ๋ ฅ๊ฐ์ "yyyy.mm.dd" ์ด์ ๋ฐ์ดํฐ๋ฅผ ๋ค์ ์ฒ๋ฆฌํด์ฃผ์ด์ผ ํ๋ค. ์์ ์์ ๊ฐ์ด datatables์ option์ค์์ columns ์์ ๋ฐ์ดํฐ๋ฅผ ์์ฑํด์ฃผ๊ณ , render์์ฑ์ ์ด์ฉํ์ฌ ๋ฐ์ดํฐ๋ฅผ ๋ค..