External skins break the Image of the DatePicker button
Article Info
Rating: Not rated
|
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.