我尝试并搜索了大量代码,但没有找到任何可行的解决方案。
在下面的代码中,绑定到kendo网格的列有时可能具有空值我需要显示空白,而所有其他时间我需要以{0:dd / MM / yyyy}格式显示日期。 / p>
@(Html.Kendo().Grid<GurujiWorld.GEMS.MVC.Models.Test.TestComplaint>()
.Name("grid")
.Columns(columns =>
{
columns.Bound(p => p.ComplaintCloseDate)
.EditorTemplateName("DateTimeEditor")
.Format("{0:dd/MM/yyyy}")
.Title("Complaint Closed Date")
.Width(100);
}