Hi Mr Andrey,
Thanks for contacting Syncfusion support.
You can achieve this requirement by using the “Localization feature of Grid”. We suggest you to define the translations in a json file and then load the translation file to achieve this requirement.
We have prepared a sample based on this requirement, please download the sample form the link below,
[culture.json]
{
"culture": {
"grid": {
"EmptyRecord": "No records available in Grid"
}
}
}
[Index.razor]
@code{
[Inject]
IJSRuntime JsRuntime { get; set; }
...
protected override void OnAfterRender(bool firstRender)
{
this.JsRuntime.Ejs().LoadLocaleData("wwwroot/culture.json").SetCulture("culture");
}
}
|
Please get back to us if you need further assistance.
Regards,
Renjith Singh Rajendran.