Customize empty grid message "no record to display"

Is there any way to customize that message?

Thanks

3 Replies

RS Renjith Singh Rajendran Syncfusion Team April 17, 2020 11:49 AM UTC

Hi Andrea, 

Thanks for contacting Syncfusion support. 

We suggest you to use the “Globalization feature” of Grid to achieve this requirement. With this you can customize the display texts in Grid to any language(or display your custom text) by defining their corresponding Keys. Please refer the below documentation link for more details regarding this. 
Documentation :  
 
In the above documentation, you can customize the No records to display message in Grid by modifying the Grid_EmptyRecord key.  

Please refer the above documentations and kindly get back to us if you need further assistance. 

Regards, 
Renjith Singh Rajendran. 



VM veymar montano colque January 22, 2021 03:10 PM UTC

Hi Syncfusion, about this question I wonder if it is possible customize the row of the grid empty message


RS Renjith Singh Rajendran Syncfusion Team January 25, 2021 10:06 AM UTC

Hi veymar, 

Greetings from Syncfusion support. 

We have support for EmptyRecordTemplate in Grid. You can use as like the below code to render a customized empty record template in Blazor Grid.  
 
 
<SfGrid DataSource="@Orders" AllowPaging="true">    <GridTemplates>        <EmptyRecordTemplate>            <span>No Data to Display</span>        </EmptyRecordTemplate>    </GridTemplates>    ...</SfGrid>
 

Please get back to us if you need further assistance. 

Regards, 
Renjith Singh Rajendran 


Loader.
Up arrow icon