txt로 파일 저장
그리드를 export 시 txt 형식으로 저장 function txtDownload() { var properties = { filename: 'test.txt', colsep: '^', rowsep: '|', headershow: true, label: true } qcell.txtDownload(properties); }
function txtDownload() { var properties = { filename: 'test.txt', colsep: '^', rowsep: '|', headershow: true, label: true } qcell.txtDownload(properties); }
html로 파일 저장
그리드를 export 시 html 형식으로 저장
function htmlDownload() { var properties = { filename: 'test.html', label: true } qcell.htmlDownload(properties); }