notFoundText : stringDefault: "No records found."

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

Examples

sample

    
 <table id="grid"></table>
 <script>
     $('#grid').grid({
         dataSource: { url: '/0_6/Grid/GetPlayers', data: { searchString: 'sadasd' } },
         notFoundText: 'No records found custom message',
         columns: [ { field: 'ID' }, { field: 'Name' }, { field: 'PlaceOfBirth' } ]
     });
 </script>