notFoundText : string Default: "No records found."


The text that is going to be displayed if the grid is empty.

Examples

  
Edit this example
<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>