notFoundText : string Default: "No records found."
The text that is going to be displayed if the grid is empty.
Examples
<table id="grid"></table>
<script>
$("#grid").grid({
dataSource: { url: "../Grid/GetPlayers", data: { searchString: "sadasd" } },
notFoundText: "No records found custom message",
columns: [ { field: "ID" }, { field: "Name" }, { field: "PlaceOfBirth" } ]
});
</script>