我将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");
你们能帮帮我吗
1条答案
按热度按时间mwg9r5ms1#
您可以使用
template
字段,然后使用kendo.toString()
将日期转换为所需的格式。