jqgrid excell export 시 숫자 표현에 comma 때문에 문자 처리 되는 것 분기를 태워야 한다.
util.setCommaInt
formatter : function ( value, options, rdata) {
if( options.exporttype === "excel") {
return value;
} else {
return util.setCommaInt(value);
}
util.setCommaInt
formatter : function ( value, options, rdata) {
if( options.exporttype === "excel") {
return value;
} else {
return util.setCommaInt(value);
}
댓글
댓글 쓰기