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

Hide title in Multi-View Mode of RadCalendar

1 Answer 93 Views
Calendar
This is a migrated thread and some comments may be shown as answers.
Evgeniy
Top achievements
Rank 1
Evgeniy asked on 30 Sep 2008, 03:14 PM
Hi, all!

How hide title in Multi-View Mode of RadCalendar?

Thank!

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 01 Oct 2008, 05:37 AM
Hi,

Try the following Javascript code to hide the tilte of a RadCalendar.

ASPX:
  <telerik:RadCalendar ID="RadCalendar1"  ClientEvents-OnLoad="OnLoad"  MultiViewColumns="2" MultiViewRows="2"    runat="server" Font-Names="Arial, Verdana, Tahoma" 
            ForeColor="Black" Style="border-color: #ececec"
        </telerik:RadCalendar> 

JS:
<script type="text/javascript" > 
    
     function OnLoad() 
     { 
     document.getElementById("RadCalendar1_Title").innerHTML = "";  
     
     } 
      
    </script> 


Thanks
Shinu.
Tags
Calendar
Asked by
Evgeniy
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or