Index: arms/html/analysisResource/modal/content-modal_sankey.html =================================================================== diff -u -r99977a4f82f439914a0668b31b146ac0ecaccc88 -r9b82e83fe2c2e3da87b0b48c0d5b24c52abd025d --- arms/html/analysisResource/modal/content-modal_sankey.html (.../content-modal_sankey.html) (revision 99977a4f82f439914a0668b31b146ac0ecaccc88) +++ arms/html/analysisResource/modal/content-modal_sankey.html (.../content-modal_sankey.html) (revision 9b82e83fe2c2e3da87b0b48c0d5b24c52abd025d) @@ -418,7 +418,12 @@ console.log(excelData); // 커스텀 옵션 정의 - let customOptions = { search:false }; + let customOptions = { + search:false, + updateTable: function(instance, cell, col, row, val, id) { + cell.style.whiteSpace = "normal"; + } + }; ModalTabFunction.setColumns(columnList); ModalTabFunction.setExcelData(excelData); Index: arms/html/analysisResource/modal/content-modal_workerStatusTable.html =================================================================== diff -u -r99977a4f82f439914a0668b31b146ac0ecaccc88 -r9b82e83fe2c2e3da87b0b48c0d5b24c52abd025d --- arms/html/analysisResource/modal/content-modal_workerStatusTable.html (.../content-modal_workerStatusTable.html) (revision 99977a4f82f439914a0668b31b146ac0ecaccc88) +++ arms/html/analysisResource/modal/content-modal_workerStatusTable.html (.../content-modal_workerStatusTable.html) (revision 9b82e83fe2c2e3da87b0b48c0d5b24c52abd025d) @@ -184,11 +184,11 @@ // excelColumn 세팅 (width ratio) var columnList = [ - { type: "text", title: "작업자 명", wRatio: 0.1}, + { type: "text", title: "작업자 이름", wRatio: 0.1}, { type: "text", title: "작업자 메일", wRatio: 0.2}, - { type: "text", title: "요구사항 및 연결이슈 합계", wRatio: 0.2}, - { type: "text", title: "요구사항 수", wRatio: 0.1}, - { type: "text", title: "연결이슈 수", wRatio: 0.1}, + { type: "numeric", title: "요구사항 및 연결이슈 합계", wRatio: 0.2}, + { type: "numeric", title: "요구사항 수", wRatio: 0.1}, + { type: "numeric", title: "연결이슈 수", wRatio: 0.1}, { type: "text", title: "요구사항 상태", wRatio: 0.15}, { type: "text", title: "연결이슈 상태", wRatio: 0.15} ]; @@ -263,7 +263,11 @@ let customOptions = { search:true, updateTable: function(instance, cell, col, row, val, id) { - cell.style.textAlign = "left"; + if(col === 2 || col === 3 || col === 4) { + cell.style.textAlign = "right"; + } else { + cell.style.textAlign = "left"; + } cell.style.whiteSpace = "normal"; } }; Index: arms/js/common/jspreadsheet/modalTabFunction.js =================================================================== diff -u -rc3c648a8ad8c8db6ed660d7d72d99380aa71cc43 -r9b82e83fe2c2e3da87b0b48c0d5b24c52abd025d --- arms/js/common/jspreadsheet/modalTabFunction.js (.../modalTabFunction.js) (revision c3c648a8ad8c8db6ed660d7d72d99380aa71cc43) +++ arms/js/common/jspreadsheet/modalTabFunction.js (.../modalTabFunction.js) (revision 9b82e83fe2c2e3da87b0b48c0d5b24c52abd025d) @@ -128,7 +128,7 @@ $($targetId)[0].jexcel.destroy(); } - setColumnWidth(chart_width); + setColumnWidth(chart_width-50); // ∵ 열 번호(jexcel_row) 때문에 $($targetId).spreadsheet($.extend({}, { columns: getColumns(),