• Components
    • Barcodes
    • Buttonsupdated
    • Charts
    • Conversational UIupdated
    • Data Query
    • Date Inputsupdated
    • Date Math
    • Dialogsupdated
    • Drawing
    • Dropdowns
    • Editorupdated
    • Excel Export
    • File Saver
    • Filter
    • Ganttupdated
    • Gauges
    • Gridupdated
    • Iconsupdated
    • Indicators
    • Inputsupdated
    • Labels
    • Layoutupdated
    • ListBoxupdated
    • ListView
    • Mapbeta
    • Menusupdated
    • Navigationupdated
    • Notification
    • Pagerupdated
    • PDF Export
    • PivotGridupdated
    • Popup
    • ProgressBars
    • Ripple
    • Schedulerupdated
    • ScrollViewupdated
    • Sortableupdated
    • ToolBarupdated
    • Tooltipsupdated
    • TreeList
    • TreeView
    • Typography
    • Uploadsupdated
    • Utilities
  • Styling & Themes
  • Common Features
  • Project Setup
  • Knowledge Base
  • Sample Applications
  • FAQ
  • Troubleshooting
  • Updates
  • Changelogs
New to Kendo UI for Angular? Start a free 30-day trial

WeekNumberCellTemplateDirective

Used for rendering the week number cell content in the month view of the Calendar. To define the month week number cell template, nest an <ng-template> tag with the kendoCalendarWeekNumberCellTemplate directive inside the component tag. The template context is set to the current component. To get a reference to the current date, use the let-date directive. To provide more details about the current week number cell, get a reference to the current cellContext by using the let-cellContext directive.

For more examples, refer to the article on templates.

@Component({
selector: 'my-app',
styles: ['.custom { color: red; }'],
template: `
 <kendo-calendar [weekNumber]="true">
   <ng-template kendoCalendarWeekNumberCellTemplate let-context="cellContext">
     <span class="custom">{{context.formattedValue}}</span>
   </ng-template>
 </kendo-calendar>
`
})
export class AppComponent { }

Selector

[kendoCalendarWeekNumberCellTemplate]

In this article

Not finding the help you need?