Kendo ui Scheduler-更改日期格式 [英] Kendo ui scheduler - change date format

查看:204
本文介绍了Kendo ui Scheduler-更改日期格式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我可以使用dateHeaderTemplate属性更改列标题上的kendo ui调度程序的日期格式,但是我需要更改下图中突出显示的日期格式:

I'm able to change the format of the dates for a kendo ui scheduler on the column headers using the dateHeaderTemplate property but I need to change the format of the date highlighted in the image below:

我确定必须有一种非常简单的方法来执行此操作,但到目前为止在telerik文档中还没有找到任何内容.

I'm sure there must be a pretty simple way of doing this but haven't found anything in the telerik docs so far.

推荐答案

请尝试使用以下代码段.

Please try with the below code snippet.

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8"/>
    <title>Kendo UI Snippet</title>

    <link rel="stylesheet" href="http://kendo.cdn.telerik.com/2016.3.914/styles/kendo.common.min.css"/>
    <link rel="stylesheet" href="http://kendo.cdn.telerik.com/2016.3.914/styles/kendo.rtl.min.css"/>
    <link rel="stylesheet" href="http://kendo.cdn.telerik.com/2016.3.914/styles/kendo.silver.min.css"/>
    <link rel="stylesheet" href="http://kendo.cdn.telerik.com/2016.3.914/styles/kendo.mobile.all.min.css"/>

    <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
    <script src="http://kendo.cdn.telerik.com/2016.3.914/js/kendo.all.min.js"></script>
</head>
<body>

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
    date: new Date("2013/6/6"),
    views: [
   "day",
   { type: "week", selected: true },
   "month",
   "agenda",
   "timeline"
    ],
    dataBound: scheduler_dataBound,
    dataSource: [
      {
          id: 1,
          start: new Date("2013/6/6 08:00 AM"),
          end: new Date("2013/6/6 09:00 AM"),
          title: "Interview"
      }
    ]
});
function scheduler_dataBound(e) {
    if (this.viewName() != "month") {
        var test = $(".k-lg-date-format").html().split('-'); 
        var _str = kendo.toString(kendo.parseDate(test[0].trim()), 'ddd MM/dd');
        if (test.length == 2) {
            _str += " - " + kendo.toString(kendo.parseDate(test[1].trim()), 'ddd MM/dd');
        } 
        $(".k-lg-date-format").html(_str);
        $(".k-sm-date-format").html(_str); 
    }
}
</script>
</body>
</html>

让我知道是否有任何问题.

Let me know if any concern.

这篇关于Kendo ui Scheduler-更改日期格式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆