Community & Support
Home / Community & Support / Knowledge Base / RadControls for ASP.NET and ASP.NET AJAX / Scheduler / External skins break the Image of the DatePicker button

External skins break the Image of the DatePicker button

Article Info

Rating: Not rated

Article information

Article relates to

 RadScheduler

Created by

 Simon, Telerik

Last modified by

 Simon, Telerik


SYMPTOMS
The Image of the DatePicker button cannot be loaded when using external skins.

CAUSES
The path to the Image is incorrect.

RESOLUTION
Set the path to the Image in the code-behind:

[C#]
RadDatePicker picker = RadScheduler1.FindControl("SelectedDatePicker"as RadDatePicker; 
 
if (picker != null
    picker.ImagesPath = "/img/"

[VB.NET]
Dim picker As RadDatePicker = TryCast(RadScheduler1.FindControl("SelectedDatePicker"), RadDatePicker) 
 
If picker IsNot Nothing Then 
    picker.ImagesPath = "/img/" 
End If 

Note: the issue is fixed in 2008.Q3 release.

Comments

There are no comments yet.
If you'd like to comment on this KB article, please, send us a Support Ticket.
Thank you!

Please Sign In to rate this article.