써먹는 웹개발

[JqGrid] 데이터 없을 때 시트 첫번째 줄에 메시지 표시하는 방법 본문

Client/Jqgrid (+tui grid), ck editor

[JqGrid] 데이터 없을 때 시트 첫번째 줄에 메시지 표시하는 방법

kmhan 2018. 5. 26. 10:36


728x90
반응형
[JqGrid] 데이터 없을 때 시트 첫번째 줄에 메시지 표시하는 방법

 loadComplete: function(data) {

            $("#nodata").remove();

                if(data.length == 0){

                $("#gridGroupList.ui-jqgrid-btable").after("<p id='nodata' style='margin-top: 5px; text-align: center; font-weight: bold;'>검색된 자료가 없습니다</p>");

                }

}


728x90
반응형


Comments