When jqGrid is empty I want to display single empty row inside the grid with information message that there are not any data. How is this possible? Thanks
Append your error container on success as
onLoadSuccess: function() { **var rows = $(this).datagrid("getRows");** if(rows.length == 0) { $("#errordiv").show(); $(".datagrid-view").append('Ur Message'); } else $("#errordiv").hide(); }