[기능]EXCEL EXPORT(EXCEL GRID)

개-발뚜-발·2023년 7월 28일
0

기능

목록 보기
2/5
post-custom-banner

현재 그리드에 표시된 컬럼 구조대로 데이터셋을 엑셀 파일로 변환해서 로컬파일로 저장하거나 서버로 업로드합니다.

찾아보면 프로그램도있고, 파일도 있음.
리얼그리드 형식으로 만들어져있다.
내보내기(다운로드)할 때 exportGrid()함수로 지정한 설정에 따라 현재 그리드의 모양과 데이터를 외부 문서로 내보낸다.

excel로 내보내기

형식)

//Client
gridView.exportGrid({
  type: "excel",
  target: "remote",
  url: "/remote/ExcelXBin",
  fileName: "gridExportSample.xlsx"
});) 

	function fn_excel(){
		var excelType = "excel"; // excel | excelx 
		grdMain.exportGrid({
			type: excelType,
			target: "local", //local|url
			fileName:  $('div.page_title > h2').text() + ".xlsx",
			url: $('div.page_title > h2').text() + ".xlsx",
		});
        
  • fn_excel을 실행 할 시, type은 excel이고, target은 local,
    fileName형식 지정, url은 서버처리주소.
profile
관심O 댓글O 감놔라배놔라O 가르쳐주는거O 한가할때올립니다
post-custom-banner

0개의 댓글