不幸的是FullCalendar網站上的這個文檔有點稀疏。如何動態地添加/刪除eventSources
我有3個eventSources,我想使用一系列3個複選框,當選中時將顯示該eventSource,而未選中時將隱藏它。
爲addEventSource的方法是.fullCalendar('addEventSource', source)
爲removeEventSource的方法是.fullCalendar('removeEventSource', source)
我使用了根據文檔
由於1.5版本中,源參數已變得相當FullCalendar 1.5.3輕鬆。您可以提供事件源的Array/URL/Function,或者您可以指定完整的事件源對象。
我仍然主要fullCalendar建立內指定我EventSources,然後用上面的方法,如果是這樣的話是什麼在我的情況source
?
下面是我eventSources:
eventSources: [ //sets up where we will get the data for claims (fullCalendar refers to them as events)
{
url: '../Users/json-events.aspx', //file which generates a json feed
type: 'GET',
allDay: false,
editable: false,
data: { //extra params that will signify which sql script to use
e: 'tsb', //gets tsb claims
c: ccview, //for this cost centre
t: tview, //for this team
p: pid //for this pid
},
error: function() {
alert('There was an error while fetching TSB claims');
},
color: '#a6b28c', //background color of block
textColor: 'black' //text colour of block
},
{
url: '../Users/json-events.aspx',
type: 'GET',
allDay: false,
editable: false,
data: {
e: 'co', //get call out claims
c: ccview, //for this cost centre
t: tview, //for this team
p: pid //for this pid
},
error: function() {
alert('There was an error while fetching Call-Out claims');
},
color: '#ea9473',
textColor: 'black'
},
{
url: '../Users/json-events.aspx',
type: 'GET',
allDay: false,
editable: false,
data: {
e: 'ot', //get overtime claims
c: ccview, //for this cost centre
t: tview, //for this team
p: pid //for this pid
},
error: function() {
alert('There was an error while fetching Overtime claims');
},
color: '#a8bac8',
textColor: 'black'
}
],
正如你可以看到我使用的是相同的URL(差異將是「E」參數)
經過大量玩弄我第一次該系統刪除事件,問題是讓他們回來,我終於讓他們回來了,但他們回到了標準的藍色,而不是顏色分配。有沒有人有任何想法? – Mych 2012-03-14 08:59:20
好讓我們試試和皮膚一個貓的另一種方式...我可以加載所有事件,然後根據複選框的值隱藏或顯示這些特定事件的div嗎?我會尋找什麼div?我認爲他們會有相同的div但具有不同的風格屬性。 – Mych 2012-03-14 13:13:32