how can i display month names without converting each month number via a function
this is my kendo grid with month column:
<kendo-grid-column field="month"> <ng-template kendoGridCellTemplate let-dataItem="dataItem"> <span>{{convertMonthNToName(dataItem)}}</span> </ng-template></kendo-grid-column>the function convertMonthNToName contains a switch that returns a string month name
Is there anything kendo preset that does this? via a parse or via culture libraries
