Hi Dongil,
Thanks for contacting Syncfusion support.
We have analyzed your query and based on your requirement we have prepared a sample that can be downloaded from the below link.
In this sample we have customized the “No records to display” using Locale property in grid.
Refer the code example.
@(Html.EJ().Grid<object>("Localization")
...
.Locale("de-DE")
.Columns(col =>
{
...
})
)
<script type="text/javascript">
ej.Grid.Locale["de-DE"] = {
EmptyRecord: "Keine Aufzeichnungen angezeigt",
...
};
</script> |
Also to change the height of particular td element we suggest you to use the cssClass in grid.
Refer the code example.
<style>
.rowchange .e-gridcontent td{
height:30px;
}
</style>
@(Html.EJ().Grid<object>("Localization")
...
.CssClass("rowchange")
...
})
)
|
Note: To use the Localization for the grid please refer the corresponding locale file in the script section under ej.web.all.min.js file