|
|
@@ -134,6 +134,9 @@
|
|
|
<!-- 리스트 영역 -->
|
|
|
<div class="panelStyle">
|
|
|
<ul class="panelBar">
|
|
|
+ <li>
|
|
|
+ <button type="button" class="btn btn-default btn-lg" id="btnExcel">엑셀다운로드</button>
|
|
|
+ </li>
|
|
|
<li class="right">
|
|
|
검색결과 : <strong><span id="gridRowTotalCount">0</span> 건</strong>
|
|
|
쪽번호 <span id="pgNo">0</span>/ <strong id="endPgNo">0</strong>
|
|
|
@@ -193,6 +196,10 @@
|
|
|
headerName: "관리대상", field:'managedRsn', width:230, cellClass: 'text-center',
|
|
|
valueGetter: function (params) { return gagaAgGrid.lookupValue(managedRsnList, params.data.managedRsn); }
|
|
|
},
|
|
|
+ {
|
|
|
+ headerName: "생년월일", field:'birthYmd', width:90, cellClass: 'text-center',
|
|
|
+ valueGetter: function (params) { return gagaAgGrid.toDateFormat(params.data.birthYmd); }
|
|
|
+ },
|
|
|
{
|
|
|
headerName: "가입일자", field:'joinDt', width:120, cellClass: 'text-center',
|
|
|
valueGetter: function (params) { return gagaAgGrid.toDateFormat(params.data.joinDt); }
|
|
|
@@ -321,6 +328,11 @@
|
|
|
gagaPaging.createPagination(result.pageing.pageable);
|
|
|
};
|
|
|
|
|
|
+ // 엑셀다운로드
|
|
|
+ $('#btnExcel').on('click', function() {
|
|
|
+ gagaAgGrid.exportToExcel('활동회원 목록', gridOptions);
|
|
|
+ });
|
|
|
+
|
|
|
$(document).ready(function() {
|
|
|
// 공통 달력 생성
|
|
|
cfnCreateCalendar('#terms', 'stDate', 'edDate', true, '기간', 'X');
|