1

我正在使用 Jquery Week Calendar 插件,几乎一切工作正常,但是:当我将我的用户名数组提供给“用户”选项时,它会从我的数组中加载所有用户但不显示任何事件。显然,当我禁用“用户”选项时,所有事件都会被加载。

我的用户名数组似乎与事件发生冲突。

可能会发生什么??

让我们看一下代码:

创建事件:

var eventData1 = {
    options: {
    timeslotsPerHour: 4,
    timeslotHeight: 20,
    showAsSeparateUsers: true
  },
  events : [
     {'id':1, 'start': new Date(year22, month22, day22, 12), 'end': new Date(year22, month22, day22, 13, 30),'title':'Lunch with Mike'},
     {'id':2, 'start': new Date(year22, month22, day22, 14), 'end': new Date(year22, month22, day22, 14, 45),'title':'Dev Meeting'},
     {'id':3, 'start': new Date(year22, month22, day22 + 1, 18), 'end': new Date(year22, month22, day22 + 1, 18, 45),'title':'Hair cut'},
     {'id':4, 'start': new Date(year22, month22, day22 - 1, 8), 'end': new Date(year22, month22, day22 - 1, 9, 30),'title':'Team breakfast'},
     {'id':5, 'start': new Date(year22, month22, day22 + 1, 14), 'end': new Date(year22, month22, day22 + 1, 15),'title':'Product showcase'}
  ]
};

在日历中加载事件:

    data: function(start, end, callback) {
      console.log(eventData1);
      callback(eventData1);
    }

其他选项:

users: usersWs, // user names array
showAsSeparateUsers: true,
displayOddEven: true,
displayFreeBusys: false,
displayEvents: true,
allowCalEventOverlap: true,
businessHours : {start: 7, end: 23, limitDisplay: true},
firstDayOfWeek : 1,
daysToShow: 6,

我可以了解更多详情。谢谢大家的关注。

4

1 回答 1

1

您应该通过添加到每个事件来分配,例如eventsusersuserId: [id]

events : [
     {'id':1, 'start': ..., 'end': ...,'title':'Lunch with Mike', userId: [id]},
     {'id':2, 'start': ..., 'end': ...,'title':'Dev Meeting', userId: , userId: [id]},
     ...
]

那应该可以看一下multi-user 的官方演示

于 2015-07-23T19:43:42.700 回答