BoldDesk®Customer service software offering ticketing, live chat, and omnichannel support, starting at $49/mo. for 10 agents. Try it for free.
Please I need some help with my scheduler control.
Anytime I include the onEventRendered eventhandler, which is supposed to be a handler for a dropdown additional control field on the schedular popup modal, the events don't display on the schedular until I remove it.
Please see below the code block:
<ejs-schedule id="scheduler" cssClass="schedule-overview" height="100%" timezone="UTC" dateHeaderTemplate="@dateHeaderTemplate" dataBinding="onDataBinding"
popupOpen="onPopupOpen"
eventRendered="onEventRendered"
startHour="08:00"
endHour="18:00"
created="onCreated" destroyed="onDestroyed">
<e-schedule-resources>
<e-schedule-resource field="CalendarId" title="Calendars" name="Calendars" allowMultiple="true" dataSource="@calendarCollections" query="new ej.data.Query().where('CalendarId', 'equal', 1)" textField="CalendarName" idField="CalendarId" colorField="CalendarColor"></e-schedule-resource>
</e-schedule-resources>
<e-schedule-group resources="@resources"></e-schedule-group>
<e-schedule-views>
<e-schedule-view option="Day"></e-schedule-view>
<e-schedule-view option="Week"></e-schedule-view>
<e-schedule-view option="WorkWeek"></e-schedule-view>
<e-schedule-view option="Month"></e-schedule-view>
<e-schedule-view option="Year"></e-schedule-view>
<e-schedule-view option="Agenda"></e-schedule-view>
<e-schedule-view option="TimelineDay"></e-schedule-view>
<e-schedule-view option="TimelineWeek"></e-schedule-view>
<e-schedule-view option="TimelineWorkWeek"></e-schedule-view>
<e-schedule-view option="TimelineMonth"></e-schedule-view>
<e-schedule-view option="TimelineYear"></e-schedule-view>
</e-schedule-views>
</ejs-schedule>
<script type="text/javascript">
function onEventRendered(args) {
var scheduleObj = document.getElementById('scheduler').ej2_instances[0];
applyCategoryColor(args, scheduleObj.currentView);
}
</script