Hello,
Is it possible to localize the Column Title in the Grid component?
For instance, in the following example, I would like to show Name or Nom depending on the user's locale.
$("#grid").kendoGrid({
dataSource:remoteDataSource,
height: 550,
groupable: true,
sortable: true,
resizable: true,
pageable: {
refresh: true,
pageSizes: true,
buttonCount: 5
},
columns: [{
field: "name",
title: "Name",
width: 400
},
Cheers,
Paul