Lines Matching full:edit
382 * Show the edit event dialog, which is also used to create new events
384 * @param {Object} edit Whether we edit (true) or create a new event (false)
386 showEditEventDialog : function(event, edit) { argument
393 if(edit)
395 // Use the specific calendar setting if we edit an event
412 // Buttons are dependent on edit or create
415 // 1) Somebody tries to edit, it is not recurring and not readonly -> show
416 // 2) Somebody tries to edit, it is recurring and not readonly -> message
417 // 3) Somebody tries to edit, it is readonly -> message
420 if(edit && (event.recurring != true) && (readonly === false))
424 dialogButtons[LANG.plugins.davcal['edit']] = function() {
489 else if(edit && (event.recurring == true) && (readonly === false))
495 else if(edit && (readonly === true))
639 if(!edit && (dw_davcal__modals.settings['calids'][i]['write'] === false))
645 if(edit || (dw_davcal__modals.settings['calids'].length < 1))
842 * Hide the edit event dialog