axisj icon indicating copy to clipboard operation
axisj copied to clipboard

dec() 개선 입니다!!!

Open david80 opened this issue 9 years ago • 0 comments

function dec() { try { return decodeURIComponent((this + '').replace(/\+/g, '%20')); } catch (e) { return unescape(this); } } 빈값일 경우 + 가 나오는데 위처럼 바꾸면 그리드에 빈값이 제대로 표현이 됩니다.

david80 avatar Dec 26 '16 06:12 david80