[jQuery][datatables] 엑셀 다운로드
$('#myTable').DataTable( { buttons: [ { extend: 'excel', text: 'Save current page', exportOptions: { modifier: { page: 'current' } } } ] } ); 프로젝트에서는 엑셀 다운로드시 컬럼별로 CSS를 설정해주고, function getExcelConfig(){ // 엑셀 스타일 설정 const cols = [ // 순서 { idx:0, stCode :'center' }, // 일자 { idx: 1, stCode :'center', width: 40 }, // 구분 { idx: 2, stCode:'center' }, // 비고 { idx: 3, stCode:'left', width: 50 } ]; // s..