我正在使用Kendo UI,我正在尝试使用以下代码
在网格中使用filter属性 @(Html.Kendo().Grid(Model)
.Name("TaskListGrid")
.Columns(columns =>
{
columns.Bound(p => p.Description);
columns.Bound(p => p.InstrumentType.DisplayName).Title("Instrument Type");
columns.Bound(p => p.CounterParty).Title("Counterparty");
columns.Bound(p => p.CommodityType);
columns.Bound(p => p.ContractDate).Format(Settings.Current.DatePattern);
columns.Bound(p => p.Price);
columns.Bound(p => p.Currency);
columns.Bound(p => p.Comment);
columns.Template(@<text>
@Html.ActionLink("View details", "Index", item.InstrumentType.DetailController(), new { Id = item.ContractId }, null)
</text>).Width(120);
})
.Filterable()
.Sortable()
当我在localSTS中执行此代码时,过滤在ContractDate(没有时间组件的DateTime)上正常工作。但是当我在不进行任何更改的情况下部署相同的代码时,在部署的环境中,过滤对于ContractDate无法正常工作,有人可以帮助我吗