我正在使用kendo网格来显示来自viewModel的信息。视图模型包含:
[DisplayName("Received Date")]
[DataType(DataType.Date)]
[DisplayFormat(DataFormatString = "{0:yyyy-MM-dd}", ApplyFormatInEditMode = true)]
public DateTime? ReceivedDate { get; set; }
[DisplayName("Received Month")]
public string ReceivedMonth { get { return (this.ReceivedDate == null ? "" : this.ReceivedDate.Value.ToString("MMMM")); } }
我已将Kendo网格设置如下:
@(Html.Kendo().Grid<ViewModel>()
.Name("Grid")
.HtmlAttributes(new { style = "height:100%; width:100%;" })
.Events(events => events.DataBound("onGridDataBound").Change("onSelectionChange").Save("onGridSave"))
.Scrollable()
.Columns(columns =>
{
columns.Bound(u => u.ReceivedDate).Format("{0:dd/MM/yyyy}").Filterable(c => c.Cell(y => y.Template("datePicker"))).Width("200px");
columns.Bound(u => u.ReceivedMonth)
.Title("Received Date<br/>Month")
})
.NoRecords("No Records to Display")
.Editable(editable => editable.Mode(GridEditMode.InLine))
.AutoBind(true)
.Pageable(pageable => pageable.Refresh(true).PageSizes(new[] { 10, 20, 50, 100, 200 }).ButtonCount(5))
.Sortable()
.Filterable(ftb => ftb.Mode(GridFilterMode.Row))
.Reorderable(r => r.Columns(true))
.Navigatable()
.ColumnMenu()
.EnableCustomBinding(true)
.DataSource(dataSource => dataSource
.Ajax()
.ServerOperation(true)
.PageSize(10)
.Model(m =>
{
m.Id(i => i.Id);
})
.Read(read => read
.Action("getData", "Data"))
.Update(update => update
.Action("updateViaGrid", "Data"))
)
)
)
但我无法让过滤在ReceivedMonth上运行,因为下划线数据源中不存在该列。
我正确接近这个?我有一个日期列,我想在它旁边的列只有月份,我可以选择一个月,它将返回该月的任何数据。
非常感谢
答案 0 :(得分:1)
要快速获胜,请尝试.ServerOperation(false)
。目前,您隐式将过滤器表达式传递给Kendo活页夹,以获取不存在的属性。
这将在客户端而不是服务器上执行所有分页,排序,过滤和分组操作。
如果这不适合您的用例,那么您需要在Model类中实现ReceivedMonth
属性,然后才能过滤服务器端。