Files
BACHIR SOULDI 2794e62571 first commit
2025-09-28 08:49:37 +01:00

44 lines
1.5 KiB
JavaScript

/*+***********************************************************************************
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
* ("License"); You may not use this file except in compliance with the License
* The Original Code is: vtiger CRM Open Source
* The Initial Developer of the Original Code is vtiger.
* Portions created by vtiger are Copyright (C) vtiger.
* All Rights Reserved.
*************************************************************************************/
Vtiger_List_Js("Calendar_List_Js", {
triggerMassEdit: function(massEditUrl) {
Vtiger_List_Js.triggerMassAction(massEditUrl);
}
}, {
registerDeleteRecordClickEvent :function() {
var thisInstance = this;
jQuery('#page').on('click', '.deleteRecordButton', function(e){
var elem = jQuery(e.currentTarget);
var originalDropDownMenu = elem.closest('.dropdown-menu').data('original-menu');
var parent = app.helper.getDropDownmenuParent(originalDropDownMenu);
var row = parent.closest('tr');
var recordId = row.data('id');
var isRecurringEnabled = row.data('recurringEnabled');
if(isRecurringEnabled === 1) {
app.helper.showConfirmationForRepeatEvents().then(function(postData) {
thisInstance._deleteRecord(recordId,postData);
});
} else {
thisInstance.deleteRecord(recordId);
}
e.stopPropagation();
});
},
registerRowDoubleClickEvent: function () {
return true;
},
registerEvents: function() {
this._super();
}
});