Hello,
I'm using a RadDatePicker with 'Default' Skin.
It currently looks like this:
Attachment: DatePickerControl Alt.PNG
Is there a simple way (without creating custom skins, or button
image) to style the DatePopupButton to look like a normal RadButton with
icon, so the result would be something like this:
Attachment: DatePickerControl Neu.PNG
I tried this:
public
class
DatePickerControl : RadDatePicker
{
protected
override
void
OnChildrenCreated()
{
base
.OnChildrenCreated();
/*
..
*/
DateInput.CssClass =
"RadButton_Default"
;
/*
..
*/
}
}
but no success.
Please help.
Thank you,
Alex