Reputation: 11
I am using RadDatePicker telerik
control in my project.in picker date less than today are disable
and others are enable.
I want to set enable date in bold font
. How can I do this.
Please take me out from this situation. Thanks in advance.
Upvotes: -2
Views: 296
Reputation: 4727
You just need to use the css like below, if it is textbox:-
.rcOutOfRange {
font-weight: 100 !important;
}
Upvotes: 0