RadCalendar for ASP.NET

Customizing Columns and Rows Headers/Selectors Send comments on this topic.
See Also
Customizing Behavior > Customizing Columns and Rows Headers/Selectors

Glossary Item Box

The Column and Row Headers of Telerik RadCalendar can be used as selectors (UseColumnHeadersAsSelectors="true", UseRowHeaderAsSelectors="true") and quickly select groups of days in multi-select mode (EnableMultiSelect="true"). The View Selector, on the other hand, allows you to select the whole month view at once.

You can enable the above three headers using the ShowRowHeaders, ShowColumnHeaders, and EnableViewSelector properties respectively. Please, note that by default the Row and Column headers show the day names and week numbers (as shown on the screenshot above).

 

This is done for the purposes of further customization. In most cases you would need the actual day names (or abbreviations) and week numbers to be used as headers. Developers can specify custom text/image that will appear in the individual cells of the row/column/view headers (one text/image for all row header cells, one text/image for all column header cells). This is done using the RowHeaderText, RowHeaderImage, ColumnHeaderText, ColumnHeaderImage properties.

 

You can easily set the headers to function as selectors by the UseColumnHeadersAsSelectors and UseRowHeaderAsSelectors properties. When you mouse over a row/column/view selector, the corresponding row/column/view will be hovered too: 

  

See Also