更改开始时间可扩展日历(extjs)

时间:2011-09-29 07:11:05

标签: extjs calendar extensible

我尝试了一个extjs组件(可扩展日历)

http://ext.ensible.com/

我希望更改日视图中的开始时间变为4.30,但数据在23:00之后不显示。

这让我疯狂T.T

请,任何建议请...

2 个答案:

答案 0 :(得分:1)

设置日视图的viewStartHour : Integer配置。

Read docs here

答案 1 :(得分:0)

在飞行中设置viewStartHour和viewEndHour !!

var cal = Ext.ComponentQuery.query('#app-calendar')[0];
var activeView = cal.getActiveView();

activeView.body.viewStartHour = 6; //you most use an variable!!
activeView.body.viewEndHour = 12;

activeView.body.tpl.viewStartHour = 6;
activeView.body.tpl.viewEndHour = 12;
activeView.body.tpl.constructor();

activeView.body.refresh(false);

享受!!!!