Click here to Skip to main content
15,949,686 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi All,

am using the jquery calender control in the asp.net application. In my project am saving the date into database from calender control. when i next time open the calender control i need saved date should show in different color . How can i do this?

Thanks in advance
Posted

1 solution

Try this :

Add SpecialDays as shown below in order to highlight current day in calendar popup of RadDateTimePiker.
ASP.NET
<telerik:raddatetimepicker id="RadDateTimePicker1" runat="server" culture="English (United States)" xmlns:telerik="#unknown">   
<calendar>  
    <specialdays>  
        <telerik:radcalendarday repeatable="Today" itemstyle-backcolor="Bisque" />   
    </specialdays>  
</calendar>  
</telerik:raddatetimepicker>  
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900