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
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…