Export DocumentTitle
Excel Export시 documentTitle, documentSubtitle, documentTail 속성을 이용하여 Excel문서에 제목, 부제, 꼬릿말을 추가할 수 있습니다.
(Only JS Support)
exportGrid() 함수를 사용해서 Excel 문서를 내려 받을 때 GridExportOptions의 documentTitle, documentSubtitle, documentTail 속성을 이용하여 Excel문서에 제목, 부제, 꼬릿말을 추가할 수 있습니다.
Title옵션의 세부 속성은 아래와 같습니다.
1
2
3
4
5
6
7
8
GridExportOptions.documentTitle = {
message: null,
visible: true,
styles: null,
spaceTop: 0, // 상단 여백
spaceBottom: 0, // 하단 여백
height: -1 // 엑셀의 행 높이
};
엑셀타입 설정
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
var excelType = $(':radio[name="excelType"]:checked').val() == "2007";
gridView.exportGrid({
type: "excel",
target: "local",
fileName: "gridExportSample.xlsx",
compatibility: excelType,
documentTitle: { //제목
message: "리얼그리드 제목1",
visible: true,
styles: {
fontSize: 40,
fontBold: true,
textAlignment: "center",
lineAlignment: "center",
background: "#08f90000"
},
spaceTop: 1,
spaceBottom: 0,
height: 60
},
documentSubtitle: { //부제
message: "작성자 : 리얼그리드\n작성일 : " + today(),
visible: true,
styles: {
textAlignment: "far",
background: "#08f90000"
},
height: 60
},
documentTail: { //꼬릿말
message: "리얼그리드 꼬릿말",
visible: true,
styles: {
fontSize: 12,
fontBold: true,
textAlignment: "center",
background: "#080000f1"
}
}
});