This question is locked. New answers and comments are not allowed.
I am having a rendering issue when putting a DatePicker from a partial view within the PanelBar.
I am added the tab as follows:
.Items(items =>
{
items.Add()
.ImageUrl("~/Content/Home/calendarImage.png")
.Text("Calendar")
.LoadContentFrom(Url.Action("_Menu", "Calendar"));
}
The partial view simply contains:
@(Html.Telerik().Calendar()
.Name("Calendar")
.Value((DateTime)ViewBag.selectedDate)
)
What I am finding is that the DatePicker is not only rendering really ugly, but the back button is not going to the proceeding month but to some month selector.
I have stripped the PanelBar down to it's bare bones but still no luck. I have also tried putting the calendar into a spitter section and it renders fine there.
Please respond soon as I am working on a demo for a client that is considering purchasing the licences.
Thank you,
I am added the tab as follows:
.Items(items =>
{
items.Add()
.ImageUrl("~/Content/Home/calendarImage.png")
.Text("Calendar")
.LoadContentFrom(Url.Action("_Menu", "Calendar"));
}
The partial view simply contains:
@(Html.Telerik().Calendar()
.Name("Calendar")
.Value((DateTime)ViewBag.selectedDate)
)
What I am finding is that the DatePicker is not only rendering really ugly, but the back button is not going to the proceeding month but to some month selector.
I have stripped the PanelBar down to it's bare bones but still no luck. I have also tried putting the calendar into a spitter section and it renders fine there.
Please respond soon as I am working on a demo for a client that is considering purchasing the licences.
Thank you,