Click here to Skip to main content
15,892,927 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello,
How to customize ASPxCalendar control using client side..
I means i want to write DayCell Prepared event with the help of javascript.
I have done with server side like this:-
---
 if (e.Date.DayOfWeek == DayOfWeek.Sunday)
        {
            e.Cell.Attributes["style"] = "pointer-events:painted; color:black;background-color:#FFFFCC;text-decoration:underline;";
        }
        else
        {
            e.Cell.Attributes["disabled"] = "disable";
            e.Cell.Attributes["style"] = "pointer-events:none;background-color:#E0E0E0;cursor:none";
        }
----

But my client want this using clientside event..
Thanks in advance

Thanks
Govind
Posted
Updated 11-Feb-13 5:07am
v2
Comments
govind giri 12-Feb-13 2:02am    
hello richcd

can you please help me.. if you have any solution...

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