mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
#169: Fixing filter date picker issue.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
@using Orchard.Core.Common.ViewModels
|
||||
@{
|
||||
var editor = (DateTimeEditor)Model.Editor;
|
||||
var from = (DateTimeEditor)Model.Editor;
|
||||
}
|
||||
@Html.Label("from.Date", T("From:").Text)
|
||||
@Html.EditorFor(m => editor)
|
||||
@Html.EditorFor(m => from)
|
||||
|
@@ -1,6 +1,6 @@
|
||||
@using Orchard.Core.Common.ViewModels
|
||||
@{
|
||||
var editor = (DateTimeEditor)Model.Editor;
|
||||
var to = (DateTimeEditor)Model.Editor;
|
||||
}
|
||||
@Html.Label("to.Date", T("To:").Text)
|
||||
@Html.EditorFor(m => editor)
|
||||
@Html.EditorFor(m => to)
|
||||
|
Reference in New Issue
Block a user