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
$('#grid').jqGrid({ loadComplete: function() { if ($("#grid").getGridParam("records")==0) { $("#grid").addRowData( $("#grid") .empty() .append('No records to display') ); } } });