반응형
jqGrid loadComplete 콜백 함수를 사용하여 그리드의 데이터 로드가 완료된 후에 데이터가 없을 때 메시지를 표시하는 로직입니다.
$("#list.ui-jqgrid-btable")의 그리드 테이블 요소를 선택하고 after() 함수를 사용하여 메시지를 노출시키고 있습니다.
간단한 소스 코드이니 확인해서 사용하시면 됩니다.
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.14/themes/redmond/jquery-ui.css" type="text/css" />
<!-- jqGrid CSS -->
<link rel="stylesheet" href="//cdn.jsdelivr.net/jqgrid/4.6.0/css/ui.jqgrid.css" type="text/css" />
<!-- The actual JQuery code -->
<script type="text/javascript" src="https://code.jquery.com/jquery-1.10.2.min.js" /></script>
<!-- The JQuery UI code -->
<script type="text/javascript" src="https://code.jquery.com/ui/1.10.3/jquery-ui.min.js" /></script>
<!-- The jqGrid language file code-->
<script type="text/javascript" src="//cdn.jsdelivr.net/jqgrid/4.6.0/i18n/grid.locale-kr.js" /></script>
<!-- The atual jqGrid code -->
<script type="text/javascript" src="//cdn.jsdelivr.net/jqgrid/4.6.0/jquery.jqGrid.src.js" /></script>
<script>
$(document).ready(function() {
var mydata = [];
$("#list").jqGrid({
datatype: "local",
data: mydata,
colNames:['날짜', '아이디', '이름','상품','가격','합계'],
colModel:[
{name:'date', index:'date', width:90, align: "center"},
{name:'name', index:'name', width:100 , align: "center" },
{name:'id', index:'id', width:150, align: "center" ,sortable:false },
{name:'product', index:'product', width:80, align: "center"},
{name:'amount', index:'amount', width:80, align: "center"},
{name:'total', index:'total', width:80, align: "center"}
],
autowidth: true,
rownumbers : true,
multiselect:true,
pager:'#pager',
rowNum: 10,
rowList: [10, 20, 50],
sortname: 'id',
sortorder: 'asc',
height: 250,
loadComplete: function(data){
$(".ui-state-default.jqgrid-rownum").removeClass('ui-state-default jqgrid-rownum');
$("#list_nodata").remove();
if(data.rows.length == 0){
$("#list.ui-jqgrid-btable").after("<p id='list_nodata' style='margin-top:10px;text-align:center;font-weight:bold;font-size:12px;'>검색 결과가 없습니다.</p>");
}
}
});
$(window).on('resize.jqGrid', function() {
$("#list").jqGrid('setGridWidth', $("#list").parent().parent().parent().parent().parent().width());
})
$(".jarviswidget-fullscreen-btn").click(function(){
setTimeout(function() {
$("#list").jqGrid('setGridWidth', $("#list").parent().parent().parent().parent().parent().width());
}, 100);
});
});
</script>
<table id="list"></table>
<div id="pager"></div>
반응형
'개발이야기 > jQuery' 카테고리의 다른 글
[jQuery] 이미지 레이어 팝업, 슬라이드 (Lightbox plugin) (0) | 2023.06.28 |
---|---|
[jQuery] clockpicker 사용방법, 예제 (시간선택, 시계모양 UI) (0) | 2023.06.01 |
[jQuery] 스크롤(Scroll) Ajax 페이징 사용법, 예제 (0) | 2023.05.04 |
[jQuery] 로그인 아이디 체크박스로 저장하기 (쿠키 사용하기) (0) | 2023.05.03 |
[jQuery] Autocomplete 사용법, 예제, 옵션 (자동완성 기능) (0) | 2023.04.27 |
댓글