1) In month view events are visible, instead of those events I want to show the counts only. How this can be achieved in DHTMLX Scheduler JS version.
2) Enable date area click event in month view, not the event_link which directs to day or week view. Just need an event when In month view a date box is clicked I have to load events of that day only on click.
It can be implemented using
scheduler.addMarkedTimespan()method. You need to iterate all days during the month, count events for each day byscheduler.getEvents()and then specify the result in thehtmlparameter ofaddMarkedTimespan.Please check how it works in the snippet.
To hide all events, use also Filtering Events.
The updated demo only with numbers and without rendered events.
Related docs: addMarkedTimespan(), getEvents(), Filtering.