Kendo Grid日期选择器模板日期字符串格式

时间:2018-07-13 19:16:28

标签: kendo-ui datepicker grid

我正在使用带有日期编辑器模板的剑道网格。我正在尝试使用客户端模板格式化日期。

当前输出为:'2018年7月13日星期五00:00:00 GMT-0400(东部夏令时间)'。

如何将其转换为“ yyyy-MM-dd”格式?

下面是列代码

Private Sub Worksheet_Change(ByVal Target As Excel.Range)  
    If ScanColor(Range("lockdown")) = True Then
        MsgBox "You have an invalid cell!"
    End If
End Sub

Private Function ScanColor(Cells As Range) As Boolean
Dim cell As Range
    For Each cell In Cells
        If cell.Interior.ColorIndex = 3 Then
            ScanColor = True
            Exit For
        End If
    Next
End Function

1 个答案:

答案 0 :(得分:0)

您可以尝试

kendo.toString(new Date(2000, 10, 6), "d") -> 10/6/2000

我们需要为特定模式定义格式说明符。

如上所示,“ d”说明符呈现一个短日期模式(en-US为“ M / d / yyyy”)。