0
在Dhtmlx計劃程序時間軸視圖中,如何將小時標題從軍事時間(24小時)設置爲12小時格式?設置Dhtmlx計劃程序時間軸將小時標題顯示爲12小時格式
我已經找到了自己的論壇,一些反應,但這個似乎沒有工作。
scheduler.config.hour_date = "%h:%i %A";
任何幫助,將不勝感激。謝謝!
在Dhtmlx計劃程序時間軸視圖中,如何將小時標題從軍事時間(24小時)設置爲12小時格式?設置Dhtmlx計劃程序時間軸將小時標題顯示爲12小時格式
我已經找到了自己的論壇,一些反應,但這個似乎沒有工作。
scheduler.config.hour_date = "%h:%i %A";
任何幫助,將不勝感激。謝謝!
時間格式必須在時間軸配置對象中指定,其中x_date屬性。 這裏是例子:
scheduler.createTimelineView({
name: "timeline",
x_unit: "hour",
x_date: "%h:%i %A",
x_step: 1,
x_size: 24,
y_unit: [
{key:1, label:"James Smith"},
{key:2, label:"John Williams"},
{key:3, label:"David Miller"},
{key:4, label:"Linda Brown"}
],
y_property: "section_id",
render:"bar"
});
下面是的完整解決方案MVC,我用。
var timeline = new TimelineView("timeline", "EmployeeId");
timeline.X_Date = "%h:%i %A";
取而代之的是sched.Config.hour_date,我使用了timeline.X_Date。謝謝保羅! :) – 2013-04-23 01:02:14