This question is locked. New answers and comments are not allowed.
Hi,
I think that I've found some bug in datepicker or panelbar.
When I put datepicker inside panelbar, panel bar collapsing when you click on calendar icon.
Here is my code:
Is there a solution for this issue?
Cheers,. Grzesiek
I think that I've found some bug in datepicker or panelbar.
When I put datepicker inside panelbar, panel bar collapsing when you click on calendar icon.
Here is my code:
| <% Html.Telerik().PanelBar() |
| .Name("PanelBar") |
| .Items(items => { |
| items.Add() |
| .Expanded((bool)ViewData["showFilter"]) |
| .Text("Filtry") |
| .Content(() => { |
| %> |
| <% Html.BeginForm(null, null, FormMethod.Get);%> |
| <input type="hidden" value="true" name="filter" /> |
| <div class="filter"> |
| <ul> |
| <li> |
| <label for="dataZamOd">Data zamówienia od</label> <%= Html.Telerik().DatePicker().Name("dataZamOd").Value(DateTime.Today.AddMonths(-1)) %> |
| do <%= Html.Telerik().DatePicker().Name("dataZamDo").Value(DateTime.Today) %> |
| </li> |
| </ul> |
| <%= Html.ActionLink("Wyczyść filtr", null) %> <input type="submit" value="Zastosuj" /> |
| </div> |
| <% Html.EndForm(); %> |
| <% |
| }); |
| }).Render(); |
| %> |
Is there a solution for this issue?
Cheers,. Grzesiek