-1
我使用this answer來過濾客戶端的事件。在客戶端過濾FullCalendar事件
它適用於較新的事件,但我無法過濾從JSON加載的事件。
這裏是我的JS代碼:
$(document).ready(function() {
var idEspacoFisico=$('#seleciona option:selected').val();
$("#calendar").fullCalendar({
events: 'eventos/getEventos.json',//can't filter these
eventRender: function eventRender(event, element, view) {
//from the answer.
return ['0',event.espacoFisico].indexOf($('#seleciona option:selected').val()) >= 0
},
select: function(start, end){
//When created here, I can use the the eventRender to filter.
}
});
$('#seleciona').change(function(){
$("#calendar").fullCalendar('rerenderEvents');
});
});
和HTML:
<select class="form-control" id="seleciona">
<option value="0">Selecione</option>
<option value="1">LAB 1</option>
<option value="2">LAB 2</option>
...
</select>
<div id="calendar"></div>
我錯過了什麼? 感謝您的幫助。
爲什麼你不能過濾JSON事件?你真的遇到了什麼問題? –
問題是我無法過濾使用此解決方案的json加載的事件,只有新事件。每次我保存一個新事件時,過濾器都能正常工作,直到我重新加載頁面並通過JSON獲取事件。 –
還需要更多的細節 - 「這個解決方案」和給你新事件的區別有什麼區別?在解決問題之前,我們必須診斷問題實際上是什麼。 –