Friends, I tried to disable create option in calendar view by inheriting the js like this, but its giving me the above Odoo client error:
odoo.define('module_name.calendar_view_id', function (require) { "use strict"; var calenderView = require('web_calendar.CalendarView'); calenderView.include({ open_quick_create: function(){ if (this.model != 'model.name') { this._super(); } } }); });