double click

Hello,

I have this:

scheduler.config.xml_date = “%Y-%m-%d %H:%i”;
scheduler.config.default_date = “%F %Y”;
scheduler.config.readonly_form = true;
scheduler.config.readonly = true;
scheduler.load(“eventsxml.php”);
scheduler.attachEvent(“onDblClick”, function (event_id, native_event_object){
alert(“hello world”);
});

But, this alert don’t show. Why?

It is caused by

scheduler.config.readonly = true;

In readonly mode double click action ignored ( because normally it is lead to edit form opening )

OK!