Hello,
Is there a way to customize the message that shows up when a grid has no records to display? The default is 'Grid has no data'.
I see there is a property called emptyFilteredGridMessage but I want to display my own message even when it is not filtered.
Thanks!
Hello, you can use emptyGridMessage:
<igx-grid #grid [data]="Data" [emptyGridMessage]="'The grid is empty'" [autoGenerate]="true"></igx-grid>
Works great. Not sure how I missed that one but found emptyFilteredGridMessage so easily lol. Thanks!