Hello,
I'm using a RadDatePicker with 'Default' Skin.
It currently looks like this:
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:
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