【发布时间】:2016-11-13 12:11:03
【问题描述】:
我正在尝试让 fullCalendar 删除其先前的事件源并在 buttonclick 上重新绑定到新的事件源。我已经寻找了几个小时的答案,但我发现的解决方案似乎都不起作用。
我有一个页面,它是一个下拉菜单和 fullCalendar cal 上方的按钮。在页面加载时,日历会毫无问题地从数据库加载所有事件列表。我要实现的是一个客户端过滤器,一旦单击按钮,它将仅显示我在下拉列表中选择的名称。
将名称过滤到新的 JSON 数组中的功能运行良好,我的问题是我收到控制台错误,根据标题阻止我删除原始源并重新绑定新数组。
这是我的代码:
CSHTML:
<div class="member-filter-section">
<div class="member-filter-container">
<div class="staff-container">
<p class="staff-name">Staff Member:</p>
<div class="staff-select">
<select id="staff_list" multiple="multiple">
@foreach (var u in users)
{
<option value="@u.UserId">@u.UserName</option>
}
</select>
</div>
</div>
<div class="branch-container">
<p class="branch-name">Branch:</p>
<div class="branch-select">
<select id="branch_list">
<option>City Center</option>
<option>Foxrock</option>
<option>Dalkey</option>
</select>
</div>
</div>
<div id="filter" class="nav_button filter-button">Select</div>
</div>
</div>
<div class="calendar-wrapper">
<div id="calendar" class="calendar-body"></div>
</div>
JS:
// The ajax to return a correct JSON array
var eventsFeed = function (start, end, timezone, callback) {
var id = @agentId;
$.ajax({
type: "POST",
url: "/SystemManagement/Viewings/GetCalendarEventListings",
data: { 'agentId' : id ,'start' : start.format(), 'end' : end.format()},
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(data) {
var events = [];
$.each(data,
function(obj) {
var eventObject = data[obj];
events.push({
title: eventObject.Title,
start: eventObject.StartTime,
end: eventObject.EndTime,
id: eventObject.Id,
userId: eventObject.UserId,
color: eventObject.AppointmentColour,
attendee: eventObject.Attendee,
location: eventObject.Location,
type: eventObject.AppointmentType
});
});
globalEvents = events;
callback(events);
events = [];
},
error: function() {
console.log('Error');
}
});
}
$(document).ready(function () {
$('#staff_list').chosen();
$('#branch_list').chosen();
// Gets the JSON array to populate the calendar on page load
$('#calendar').fullCalendar({
defaultView: 'agendaDay',
header: {
left: 'prev,next, today',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
height: 850,
events: eventsFeed,
eventClick: function(calEvent) {
buildModal(calEvent.type,calEvent.location,calEvent.attendee,calEvent.color, calEvent.start, calEvent.end);
modal.style.display = "block";
}
});
$('#filter')
.on('click',
function() {
var selectedStaffIds = $("#staff_list").val();
var filteredEvents = [];
globalEvents.forEach(function(obj) {
if (checkIfIdIsSelected(selectedStaffIds, obj.userId)) {
filteredEvents.push(obj);
}
});
console.log(filteredEvents);
rebindCalendar(filteredEvents);
filteredEvents.length = 0;
});
function checkIfIdIsSelected(staffId, objectId) {
return staffId.indexOf(objectId) > -1;
}
function rebindCalendar(eventsArray) {
$('#calendar').fullCalendar('removeEventSource', eventsFeed);
$('#calendar').fullCalendar('addEventSource', eventsArray);
}
【问题讨论】:
-
@rocinate i thing script reference of fullcalendar is remove ,,
-
$('#calendar') 实际上是否包含 rebindCalendar 中的任何元素?
-
@BassT 我真的不确定?我对 Javascript 很陌生,只是在关注文档以及我看到其他人在线实现的内容
-
继续添加 console.log($('#calendar').length) 作为初学者 rebindCalendar 函数的第一行。应该是 1。
-
@BassT 感谢您的帮助。是的,长度是1
标签: javascript jquery fullcalendar