This is a migrated thread and some comments may be shown as answers.

[Solved] RadCalendar Disable Column Select

1 Answer 223 Views
Calendar
This is a migrated thread and some comments may be shown as answers.
Jonathan Ruckert
Top achievements
Rank 1
Jonathan Ruckert asked on 08 May 2009, 03:10 AM
Hi,

 I am using the MultiView aspect of the calendar as such:

<

 

telerik:RadCalendar ID="RadCalendar1" runat="server" Font-Names="Arial, Verdana, Tahoma"

 

 

ForeColor="Black" Style="border-color: #ececec" ShowRowHeaders="false" ShowOtherMonthsDays="false" EnableNavigation="false" EnableMultiSelect="false" FocusedDate="2009-01-01" MultiViewColumns="3" MultiViewRows="4">

 

</

 

telerik:RadCalendar>

 



It all looks good, however when I hover over the Column Header, it highlights all of the column even though the multiselect is set to false.

Is there a way I can fix this?

Cheers,
Jonathan

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 08 May 2009, 05:43 AM
Hello Jonathan,

You can set the UseColumnHeadersAsSelectors property of the Calendar to false so that columns are not highlighted while hovering over column headers.
aspx:
 <telerik:RadCalendar ID="RadCalendar1" runat="server" Font-Names="Arial, Verdana, Tahoma"  
ForeColor="Black" Style="border-color: #ececec"  
UseColumnHeadersAsSelectors="false" ShowRowHeaders="false"  
ShowOtherMonthsDays="false" EnableNavigation="false" EnableMultiSelect="false"  
FocusedDate="2009-01-01" MultiViewColumns="3" MultiViewRows="4"
 
</telerik:RadCalendar>  

Thanks
Princy.
Tags
Calendar
Asked by
Jonathan Ruckert
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or