fit : 상세그리드 초기화부분 추가.

dev
Leeyh1121 5 months ago
parent 3f710ac681
commit 0d9c92e19b

@ -167,7 +167,6 @@
</template> </template>
<template id="${infoPrefix}NotFound--${pageName}Detail"> <template id="${infoPrefix}NotFound--${pageName}Detail">
<tr class="odd"> <tr class="odd">
<td valign="top" colspan="5" class="dataTables_empty text-center">${prefixName} 상세 정보를 찾지 못했습니다.</td>
</tr> </tr>
</template> </template>
</table> </table>
@ -263,7 +262,10 @@
// 현재 선택 자료 변경 이벤트 // 현재 선택 자료 변경 이벤트
$P.control.onCurrentChange = (item) => { $P.control.onCurrentChange = (item) => {
if (!item) return; if (!item) {
$P.detailControl.setData([]);
return;
}
let key = item.data.DSCDMNG_ID; let key = item.data.DSCDMNG_ID;

@ -117,7 +117,7 @@
</template> </template>
<template id="${infoPrefix}NotFound--${pageName}"> <template id="${infoPrefix}NotFound--${pageName}">
<tr class="odd"> <tr class="odd">
<td valign="top" colspan="13" class="dataTables_empty text-center">${prefixName} 정보를 찾지 못했습니다.</td> <td valign="top" colspan="11" class="dataTables_empty text-center">${prefixName} 정보를 찾지 못했습니다.</td>
</tr> </tr>
</template> </template>
</table> </table>
@ -169,7 +169,6 @@
</template> </template>
<template id="${infoPrefix}NotFound--${pageName}Detail"> <template id="${infoPrefix}NotFound--${pageName}Detail">
<tr class="odd"> <tr class="odd">
<td valign="top" colspan="5" class="dataTables_empty text-center">${prefixName} 상세 정보를 찾지 못했습니다.</td>
</tr> </tr>
</template> </template>
</table> </table>
@ -263,8 +262,10 @@
// 현재 선택 자료 변경 이벤트 // 현재 선택 자료 변경 이벤트
$P.control.onCurrentChange = (item) => { $P.control.onCurrentChange = (item) => {
if (!item) return; if (!item) {
$P.detailControl.setData([]);
return;
}
let key = item.data.DSCDMNG_ID; let key = item.data.DSCDMNG_ID;
$("#tbody--${pageName}").setCurrentRow(key); $("#tbody--${pageName}").setCurrentRow(key);
$P.detailControl.query = { "schDscdmngId" : key}; $P.detailControl.query = { "schDscdmngId" : key};

@ -165,7 +165,6 @@
</template> </template>
<template id="${infoPrefix}NotFound--${pageName}Detail"> <template id="${infoPrefix}NotFound--${pageName}Detail">
<tr class="odd"> <tr class="odd">
<td valign="top" colspan="5" class="dataTables_empty text-center">${prefixName} 상세 정보를 찾지 못했습니다.</td>
</tr> </tr>
</template> </template>
</table> </table>
@ -257,7 +256,10 @@
// 현재 선택 자료 변경 이벤트 // 현재 선택 자료 변경 이벤트
$P.control.onCurrentChange = (item) => { $P.control.onCurrentChange = (item) => {
if (!item) return; if (!item) {
$P.detailControl.setData([]);
return;
}
let key = item.data.DSCDMNG_ID; let key = item.data.DSCDMNG_ID;

Loading…
Cancel
Save