是否可以使用2种不同尺寸的活动盒? 我有2个日历源,我想在第一个日历事件中使用“height:2em”,在第二个日历事件中使用“height:1em”。 有可能吗?
提前的Thanxs ......
答案 0 :(得分:0)
Event Object有一个className属性。
例如,如果我有以下CSS类
.firstClass {
height: 2em;
}
.secondClass {
height: 1em;
}
以及以下事件对象
// First Source
{
title: 'First Source',
start: new Date(2012, 0, 1),
className: 'firstClass'
}
// Second Source
{
title: 'Second Source',
start: new Date(2012, 0, 2),
className: 'secondClass'
}
我得到这样的结果