繁体   English   中英

在Kendo Grid中将列类型设置为数据

[英]Set column type as data on Kendo Grid in javascript

我有一个用javascript生成的kendo网格。 我没有数据源,因为数据在页面上,然后javascript在其上生成了网格。 我正在尝试将列设置为日期类型,但是当我这样做时,列仅显示为空。

这是用于生成剑道网格的脚本

var grid = $("#punches").kendoGrid({
        dataSource: {
            pageSize: 15,
            schema: {
                model: {
                    fields: {
                        PunchDay: { type: 'date' }
                    }
                }
            }
        },
        sortable: true,
        selectable: "multiple",
        pageable: true,
        filterable: true,
        scrollable: false,
        groupable: true,
        resizable: true
    }).data("kendoGrid");

设置类型时, PunchDay列显示为空。 我认为这与该列中的数据设置有关

@FieldTranslation.ToShortDate(Html.DisplayFor(modelItem => item.PunchDay).ToString())

由于其为字符串而不是日期格式。 但是,我对此没有办法。 我的网格代码是

 <table class="table" id="punches"> <thead> <tr> <th title="@FieldTranslation.GetLabel("ID", GlobalVariables.LanguageID)"> @FieldTranslation.GetLabel("ID", GlobalVariables.LanguageID) </th> <th title="@FieldTranslation.GetLabel("EmployeeName", GlobalVariables.LanguageID)"> @FieldTranslation.GetLabel("EmployeeName", GlobalVariables.LanguageID) </th> <th title="@FieldTranslation.GetLabel("PunchDay", GlobalVariables.LanguageID)"> @FieldTranslation.GetLabel("PunchDay", GlobalVariables.LanguageID) </th> <th title="@FieldTranslation.GetLabel("PunchIn", GlobalVariables.LanguageID)"> @FieldTranslation.GetLabel("PunchIn", GlobalVariables.LanguageID) </th> <th title="@FieldTranslation.GetLabel("PunchOut", GlobalVariables.LanguageID)"> @FieldTranslation.GetLabel("PunchOut", GlobalVariables.LanguageID) </th> <th title="@FieldTranslation.GetLabel("Adjustment Time", GlobalVariables.LanguageID)"> @FieldTranslation.GetLabel("Adjustment Time", GlobalVariables.LanguageID) </th> <th title="@FieldTranslation.GetLabel("Adjustment Description", GlobalVariables.LanguageID)"> @FieldTranslation.GetLabel("Adjustment Description", GlobalVariables.LanguageID) </th> <th title="@FieldTranslation.GetLabel("WorkHours", GlobalVariables.LanguageID)"> @FieldTranslation.GetLabel("WorkHours", GlobalVariables.LanguageID) </th> @*<th> @Html.DisplayNameFor(model => model.Inactive) </th>*@ <th title="@FieldTranslation.GetLabel("Department", GlobalVariables.LanguageID)"> @FieldTranslation.GetLabel("Department", GlobalVariables.LanguageID) </th> <th width="125px;" class="hidden-filter">Actions</th> </tr> </thead> <tbody> @foreach (var item in Model) { <tr> <td> @Html.DisplayFor(modelItem => item.ID) </td> <td> @Html.DisplayFor(modelItem => item.EmployeeName) </td> <td> @FieldTranslation.ToShortDate(Html.DisplayFor(modelItem => item.PunchDay).ToString()) </td> <td> @FieldTranslation.ToShortTime(Html.DisplayFor(modelItem => item.PunchIn).ToString()) </td> <td> @FieldTranslation.ToShortTime(Html.DisplayFor(modelItem => item.PunchOut).ToString()) </td> <td> @Html.DisplayFor(modelItem => item.AdjustTime) </td> <td> @Html.DisplayFor(modelItem => item.AdjustDescr) </td> <td> @Html.DisplayFor(modelItem => item.WorkHours) </td> @*<td> @Html.DisplayFor(modelItem => item.Inactive) </td>*@ <td> @Html.DisplayFor(modelItem => item.Department) </td> <td> <a href="@Url.Action("EditTime", "TimePunches", new {id = item.ID, flt = ViewBag.FLT})" title="Edit"><i class="icon-edit fa fa-pencil fa-fw fa-lg"></i></a> <a href="@Url.Action("PunchLogIndex", "TimePunches", new {id = item.ID, flt = ViewBag.FLT})" title="Punch Log"><i class="icon-purple fa fa-book fa-fw fa-lg"></i></a> <a href="@Url.Action("PunchRequestIndex", "TimePunches", new { punchId = item.ID, flt = ViewBag.FLT })" title="See Change Request Log"><i class="icon-niagara fa fa-list fa-fw fa-lg"></i></a> <a href="#" id="delete" data-id="@item.ID" data-client="@item.ClientID"><i class="icon-red fa fa-times fa-fw fa-lg"></i></a> </td> </tr> } </tbody> </table> 

我该怎么做才能重新显示我的约会?

尝试像这样添加列部分

var grid = $("#punches").kendoGrid({
    dataSource: {
        pageSize: 15,
        schema: {
            model: {
                fields: {
                    PunchDay: { type: 'date' }
                }
            }
        }
    },
    sortable: true,
    selectable: "multiple",
    pageable: true,
    filterable: true,
    scrollable: false,
    groupable: true,
    resizable: true
},
columns: [
    { field: "PunchDay", title: "PunchDay", format: "{0:MM/dd/yyyy}" },
    ...
]).data("kendoGrid");

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM