How to differentiate events in month view?

Hi,

I want to differentiate events in monthview in mobilescheduler.For example,

personal events:
All day event_name
time event_name

public events:
All day event_name
time event_name

Is this possible to differentiate events by label in month view?

Hi,

you can customize “month_event_title” template:

docs.dhtmlx.com/doku.php?id=dhtm … vent_title

ok thanks for your reply but how can i add label before first row?

Here is how you can apply sorting for the events in month view:

$$("scheduler").$$("calendarDayEvents").data.attachEvent("onStoreUpdated",function(){ this.silent(function(){ this.order = dhx.toArray(this.order); this.sort({by:"#user#",dir: "asc", as:"int"}); // your sorting function }); $$("scheduler").$$("calendarDayEvents").render(); });

How to show the header - please see the sample samples/01_basic/04_templates.html This sample shows how to set display common header for events started in the same day.