|
|
|
|
@ -59,10 +59,8 @@
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="popup_foot">
|
|
|
|
|
<div class="mainccs rig">
|
|
|
|
|
<button type="button" id="selectBtn" class="newbtn bg1">선택</button>
|
|
|
|
|
<button type="button" id="closeBtn" class="newbtn bg2" style="margin-left: 5px;">닫기</button>
|
|
|
|
|
</div>
|
|
|
|
|
<button type="button" id="selectBtn" class="newbtns bg1">선택</button>
|
|
|
|
|
<button type="button" id="closeBtn" class="newbtns bg2">닫기</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
@ -113,6 +111,16 @@
|
|
|
|
|
*/
|
|
|
|
|
getGridColumns: function() {
|
|
|
|
|
return [
|
|
|
|
|
{
|
|
|
|
|
header: '번호',
|
|
|
|
|
name: '_rowNum',
|
|
|
|
|
align: 'center',
|
|
|
|
|
width: 60,
|
|
|
|
|
sortable: false,
|
|
|
|
|
formatter: function(e) {
|
|
|
|
|
return XitReverseRowNumberRenderer.format(OwnrSelectPopup.grid.instance.getData().length, e);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{ header: '소유자ID', name: 'ownrId', align: 'center', width: 100, hidden: true },
|
|
|
|
|
{ header: '성명', name: 'flnm', align: 'center', width: 120, sortable: true },
|
|
|
|
|
{ header: '주민등록번호', name: 'rrno', align: 'center', width: 150 },
|
|
|
|
|
@ -123,11 +131,7 @@
|
|
|
|
|
{ header: '도로명전체주소', name: 'roadNmWholAddr', align: 'left', width: 300 },
|
|
|
|
|
{ header: '우편번호', name: 'zip', align: 'center', width: 80 },
|
|
|
|
|
{ header: '비고', name: 'rmrk', align: 'left', width: 200 },
|
|
|
|
|
{ header: '등록일시', name: 'regDt', align: 'center', width: 150,
|
|
|
|
|
formatter: function (e) {
|
|
|
|
|
return e.value ? moment(e.value).format('YYYY-MM-DD HH:mm') : '';
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
{ header: '등록일시', name: 'regDt', align: 'center', width: 150}
|
|
|
|
|
];
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|