need to highlight all SUNDAY
Is there any way to highlight all SUNDAY of telerik MVC datetime picker controls with a differ开发者_Python百科ent color...please help.
Define a SpecialDay for one Sunday and set the Repeatable
property to Week
. Set the ItemStyle
to whatever colour you want.
.t-content tbody td:first-child {
background-color:#f00;
}
That might do it. (CSS2)
精彩评论