please help.
this is following my code..
i'm working fullcalendar.js library
how to render only resourceId "A" resource events at agenda weekly view?
now working all events rendered.
i want render by resourceId events
$(Calendar).fullCalendar({
resources: [
{
id: "A",
title: "R-A"
},
{
id: "B",
title: "R-B"
}
],
events: [
{
"id": "0",
"resourceId": "A"
},{
"id": "1",
"resourceId": "B"
}
],
views: {
agendaWeekly: {
days: 7
}
}
});