I want to implement something similiar to this post but based on the owner/creator of event
viewtopic.php?f=25&t=24716
I am using the
scheduler.config.readonly_form = true to allow all users pure readonly, but i have a couple of users that will be able to create events, but i donot want those users to edit the other users events just view them.
I am using the following code to block edits but it will not let them see the event details
function readonly_check(id) {
var ev = this.getEvent(id);
if (ev == undefined)
return true;
else
return ev.userid == username;
}
scheduler.attachEvent("onDblClick", readonly_check);