asp.net 无法将日期时间格式剑道网格从2022-12- 12 T00:00:00更改为12/12/2022

qq24tv8q  于 2022-12-20  发布在  .NET
关注(0)|答案(1)|浏览(158)

我将TGL_MASUK作为数据源的日期时间类型,但输出为2022-12- 12 T00:00:00,我想将输出更改为dd/MM/yyyy。

$("#grid").kendoGrid({
        dataSource: settingModel.ds_grid_dataSource,
        resizable: "true",
        editable: "inline",
        scrollable: "true",
        sortable: "true",
        filterable: "true",
        pageable: "true",
        height: "500px",
        columns: [
            { field: 'NRP', title: 'NRP', width: 30 },
            { field: 'NAMA', title: 'Name', width: 70 },
            { field: 'SUBCONT_CODE', title: 'Subcont', width: 50 },
            { field: 'DISTRICT', title: 'District', width: 50 },
            { field: 'TGL_MASUK', title: 'Tanggal Masuk', format: "{0:dd/MM/yyyy}", width: 50 }, //this is the column that i want to change format
            
        ]
    }).data("kendoGrid");

你们能帮帮我吗

mwg9r5ms

mwg9r5ms1#

您可以使用template字段,然后使用kendo.toString()将日期转换为所需的格式。

{ field: 'TGL_MASUK', title: 'Tanggal Masuk', template: '#= kendo.toString(TGL_MASUK, "dd/MM/yyyy") #', width: 50 }

相关问题