엑셀(Excel)

txt / html 파일로 저장

Step 1: txt로 파일 저장

그리드를 export 시 txt 형식으로 저장

						
function txtDownload()
	{
	   var properties = 
		{
		  filename: 'test.txt',
		  colsep: '^',
		  rowsep: '|',
		  headershow: true,
		  label: true
		}
	   qcell.txtDownload(properties);
	}
		
		

Step 2: html로 파일 저장

그리드를 export 시 html 형식으로 저장

							
function htmlDownload() 
	{
	   var properties = 
		{
		  filename: 'test.html',
		  label: true
		}
       qcell.htmlDownload(properties);
	}