mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 16:48:49 +01:00
added @meberOf JSDoc comment to constructor to get Eclipse show outline of class, also fixed several warnings
This commit is contained in:
parent
5a4850b2ed
commit
55b150cc14
273
mail/js/app.js
273
mail/js/app.js
@ -8,20 +8,22 @@
|
||||
* @version $Id$
|
||||
*/
|
||||
|
||||
app.mail = AppJS.extend({
|
||||
app.mail = AppJS.extend(
|
||||
{
|
||||
appname: 'mail',
|
||||
doStatus: null,
|
||||
mail_doTimedRefresh: false,
|
||||
|
||||
appname: 'mail',
|
||||
doStatus: null,
|
||||
mail_doTimedRefresh: false,
|
||||
mail_refreshTimeOut: 1000*60*3, // initial call
|
||||
mail_queuedFolders: [],
|
||||
mail_queuedFoldersIndex: 0,
|
||||
|
||||
mail_refreshTimeOut: 1000*60*3, // initial call
|
||||
mail_queuedFolders: [],
|
||||
mail_queuedFoldersIndex: 0,
|
||||
|
||||
/**
|
||||
/**
|
||||
* Initialize javascript for this application
|
||||
*
|
||||
* @memberOf app.mail
|
||||
*/
|
||||
init: function() {
|
||||
init: function() {
|
||||
|
||||
this._super.apply(this,arguments);
|
||||
window.register_app_refresh("mail", this.app_refresh);
|
||||
@ -30,29 +32,29 @@ init: function() {
|
||||
//inital call of refresh folderstatus
|
||||
var self = this;
|
||||
window.setTimeout(function() {self.mail_refreshFolderStatus.apply(self);},1000);
|
||||
},
|
||||
},
|
||||
|
||||
/**
|
||||
/**
|
||||
* mail_open - implementation of the open action
|
||||
*
|
||||
* @param _action
|
||||
* @param _senders - the representation of the elements(s) the action is to be performed on
|
||||
*/
|
||||
mail_open: function(_action, _senders) {
|
||||
mail_open: function(_action, _senders) {
|
||||
console.log("mail_open",_action, _senders);
|
||||
var _id = _senders[0].id;
|
||||
var dataElem = egw.dataGetUIDdata(_id);
|
||||
var subject =dataElem.data.subject;
|
||||
var subject = dataElem.data.subject;
|
||||
var sw = etemplate2.getByApplication('mail')[0].widgetContainer.getWidgetById('previewSubject');
|
||||
},
|
||||
},
|
||||
|
||||
/**
|
||||
/**
|
||||
* mail_preview - implementation of the preview action
|
||||
*
|
||||
* @param nextmatch et2_nextmatch The widget whose row was selected
|
||||
* @param selected Array Selected row IDs. May be empty if user unselected all rows.
|
||||
*/
|
||||
mail_preview: function(nextmatch, selected) {
|
||||
mail_preview: function(nextmatch, selected) {
|
||||
//console.log("mail_preview",nextmatch, selected);
|
||||
|
||||
// Empty values, just in case selected is empty (user cleared selection)
|
||||
@ -76,21 +78,21 @@ mail_preview: function(nextmatch, selected) {
|
||||
IframeHandle.set_src(egw.link('/index.php',{menuaction:'mail.mail_ui.loadEmailBody',_messageID:_id}));
|
||||
|
||||
|
||||
// var request = new egw_json_request('mail.mail_ui.ajax_loadEmailBody',[_id]);
|
||||
// request.sendRequest(false);
|
||||
},
|
||||
mail_setMailBody: function(content) {
|
||||
// var request = new egw_json_request('mail.mail_ui.ajax_loadEmailBody',[_id]);
|
||||
// request.sendRequest(false);
|
||||
},
|
||||
mail_setMailBody: function(content) {
|
||||
console.log('mail_setMailBody',content);
|
||||
var IframeHandle = etemplate2.getByApplication('mail')[0].widgetContainer.getWidgetById('messageIFRAME');
|
||||
IframeHandle.set_value('');
|
||||
},
|
||||
},
|
||||
|
||||
/**
|
||||
/**
|
||||
* mail_startTimerFolderStatusUpdate, timer functions, if the counter changes for the current folder
|
||||
* refresh the message list
|
||||
* @param timeout
|
||||
*/
|
||||
mail_startTimerFolderStatusUpdate: function(_refreshTimeOut) {
|
||||
mail_startTimerFolderStatusUpdate: function(_refreshTimeOut) {
|
||||
if (typeof _refreshTimeOut == 'undefined')
|
||||
{
|
||||
var minutes = egw.preference('refreshTime','mail');
|
||||
@ -102,17 +104,19 @@ mail_startTimerFolderStatusUpdate: function(_refreshTimeOut) {
|
||||
}
|
||||
if(_refreshTimeOut > 9999) {//we do not set _refreshTimeOut's less than 10 seconds
|
||||
var self = this;
|
||||
this.mail_doTimedRefresh = window.setInterval(function() {self.mail_refreshFolderStatus.apply(self)}, _refreshTimeOut);
|
||||
this.mail_doTimedRefresh = window.setInterval(function() {
|
||||
self.mail_refreshFolderStatus.apply(self);
|
||||
}, _refreshTimeOut);
|
||||
}
|
||||
},
|
||||
},
|
||||
|
||||
/**
|
||||
/**
|
||||
* mail_refreshFolderStatus, function to call to read the counters of a folder and apply them
|
||||
*
|
||||
* @param _nodeID
|
||||
* @param mode
|
||||
*/
|
||||
mail_refreshFolderStatus: function(_nodeID,mode) {
|
||||
mail_refreshFolderStatus: function(_nodeID,mode) {
|
||||
var nodeToRefresh = 0;
|
||||
var mode2use = "none";
|
||||
if (_nodeID) nodeToRefresh = _nodeID;
|
||||
@ -129,15 +133,15 @@ mail_refreshFolderStatus: function(_nodeID,mode) {
|
||||
|
||||
this.mail_refreshMessageGrid();
|
||||
} catch(e) { } // ignore the error; maybe the template is not loaded yet
|
||||
},
|
||||
},
|
||||
|
||||
|
||||
/**
|
||||
/**
|
||||
* Queues a refreshFolderList request for 1ms. Actually this will just execute the
|
||||
* code after the calling script has finished.
|
||||
*/
|
||||
mail_queueRefreshFolderList: function(_folders)
|
||||
{
|
||||
mail_queueRefreshFolderList: function(_folders)
|
||||
{
|
||||
this.mail_queuedFolders.push(_folders);
|
||||
this.mail_queuedFoldersIndex++;
|
||||
|
||||
@ -155,25 +159,25 @@ mail_queueRefreshFolderList: function(_folders)
|
||||
request.sendRequest();
|
||||
}
|
||||
}, 10);
|
||||
},
|
||||
},
|
||||
|
||||
/**
|
||||
/**
|
||||
* mail_setFolderStatus, function to set the status for the visible folders
|
||||
*/
|
||||
mail_setFolderStatus: function(_status) {
|
||||
mail_setFolderStatus: function(_status) {
|
||||
var ftree = etemplate2.getByApplication('mail')[0].widgetContainer.getWidgetById('nm[foldertree]');
|
||||
for (var i in _status) ftree.setLabel(i,_status[i]);//alert(i +'->'+_status[i]);
|
||||
},
|
||||
},
|
||||
|
||||
/**
|
||||
/**
|
||||
* mail_refreshMessageGrid, function to call to reread ofthe current folder
|
||||
*/
|
||||
mail_refreshMessageGrid: function() {
|
||||
mail_refreshMessageGrid: function() {
|
||||
var nm = etemplate2.getByApplication('mail')[0].widgetContainer.getWidgetById('nm');
|
||||
nm.applyFilters(); // this should refresh the active folder
|
||||
},
|
||||
},
|
||||
|
||||
/**
|
||||
/**
|
||||
* Refresh given application _targetapp display of entry _app _id, incl. outputting _msg
|
||||
*
|
||||
* Default implementation here only reloads window with it's current url with an added msg=_msg attached
|
||||
@ -183,8 +187,8 @@ mail_refreshMessageGrid: function() {
|
||||
* @param string|int _id=null id of entry to refresh
|
||||
* @param string _type=null either 'edit', 'delete', 'add' or null
|
||||
*/
|
||||
app_refresh: function(_msg, _app, _id, _type)
|
||||
{
|
||||
app_refresh: function(_msg, _app, _id, _type)
|
||||
{
|
||||
var bufferExists = false;
|
||||
window.clearInterval(app.mail.doStatus); // whatever message was up to be activated
|
||||
//alert("app_refresh(\'"+_msg+"\',\'"+_app+"\',\'"+_id+"\',\'"+_type+"\')");
|
||||
@ -205,61 +209,61 @@ app_refresh: function(_msg, _app, _id, _type)
|
||||
{
|
||||
this.doStatus = window.setInterval("app.mail.mail_setMsg(myMessageBuffer);", 10000);
|
||||
}
|
||||
},
|
||||
},
|
||||
|
||||
/**
|
||||
/**
|
||||
* mail_getMsg - gets the current Message
|
||||
* @return string
|
||||
*/
|
||||
mail_getMsg: function()
|
||||
{
|
||||
mail_getMsg: function()
|
||||
{
|
||||
var msg_wdg = etemplate2.getByApplication('mail')[0].widgetContainer.getWidgetById('msg');
|
||||
if (msg_wdg)
|
||||
{
|
||||
return msg_wdg.valueOf().htmlNode[0].innerHTML;
|
||||
}
|
||||
return "";
|
||||
},
|
||||
},
|
||||
|
||||
/**
|
||||
/**
|
||||
* mail_setMsg - sets a Message, with the msg container, and controls if the container is enabled/disabled
|
||||
* @param string myMsg - the message
|
||||
*/
|
||||
mail_setMsg: function(myMsg)
|
||||
{
|
||||
mail_setMsg: function(myMsg)
|
||||
{
|
||||
var msg_wdg = etemplate2.getByApplication('mail')[0].widgetContainer.getWidgetById('msg');
|
||||
if (msg_wdg)
|
||||
{
|
||||
msg_wdg.set_value(myMsg);
|
||||
msg_wdg.set_disabled(myMsg.trim().length==0);
|
||||
}
|
||||
},
|
||||
},
|
||||
|
||||
/**
|
||||
/**
|
||||
* Delete mails
|
||||
* takes in all arguments
|
||||
* @param _action
|
||||
* @param _elems
|
||||
*/
|
||||
mail_delete: function(_action,_elems)
|
||||
{
|
||||
mail_delete: function(_action,_elems)
|
||||
{
|
||||
var msg = this.mail_getFormData(_elems);
|
||||
//alert(_action.id+','+ msg);
|
||||
app.mail.app_refresh(egw.lang('delete messages'), 'mail');
|
||||
this.mail_setRowClass(_elems,'deleted');
|
||||
var request = new egw_json_request('mail.mail_ui.ajax_deleteMessages',[msg]);
|
||||
request.sendRequest(false);
|
||||
this.mail_refreshMessageGrid()
|
||||
},
|
||||
this.mail_refreshMessageGrid();
|
||||
},
|
||||
|
||||
/**
|
||||
/**
|
||||
* UnDelete mailMessages
|
||||
*
|
||||
* @param _messageList
|
||||
*/
|
||||
mail_undeleteMessages: function(_messageList) {
|
||||
// setting class of row, the old style
|
||||
/*
|
||||
mail_undeleteMessages: function(_messageList) {
|
||||
// setting class of row, the old style
|
||||
/*
|
||||
for(var i=0;i<_messageList['msg'].length;i++) {
|
||||
_id = _messageList['msg'][i];
|
||||
var dataElem = egw_appWindow('felamimail').mailGrid.dataRoot.getElementById(_id);
|
||||
@ -270,47 +274,47 @@ mail_undeleteMessages: function(_messageList) {
|
||||
dataElem.removeClass('deleted');
|
||||
}
|
||||
}
|
||||
*/
|
||||
},
|
||||
*/
|
||||
},
|
||||
|
||||
/**
|
||||
/**
|
||||
* mail_emptyTrash
|
||||
*/
|
||||
mail_emptyTrash: function() {
|
||||
mail_emptyTrash: function() {
|
||||
app.mail.app_refresh(egw.lang('empty trash'), 'mail');
|
||||
var request = new egw_json_request('mail.mail_ui.ajax_emptyTrash');
|
||||
request.sendRequest();
|
||||
},
|
||||
},
|
||||
|
||||
/**
|
||||
/**
|
||||
* mail_compressFolder
|
||||
*/
|
||||
mail_compressFolder: function() {
|
||||
mail_compressFolder: function() {
|
||||
app.mail.app_refresh(egw.lang('compress folder'), 'mail');
|
||||
var request = new egw_json_request('mail.mail_ui.ajax_compressFolder');
|
||||
request.sendRequest();
|
||||
},
|
||||
},
|
||||
|
||||
/**
|
||||
/**
|
||||
* mail_changeProfile
|
||||
* @param folder, the ID of the selected Node -> should be an integer
|
||||
* @param _widget, handle to the tree widget
|
||||
*/
|
||||
mail_changeProfile: function(folder,_widget) {
|
||||
// alert(folder);
|
||||
mail_changeProfile: function(folder,_widget) {
|
||||
// alert(folder);
|
||||
var request = new egw_json_request('mail.mail_ui.ajax_changeProfile',[folder]);
|
||||
request.sendRequest(false);
|
||||
this.mail_refreshMessageGrid();
|
||||
|
||||
return true;
|
||||
},
|
||||
},
|
||||
|
||||
/**
|
||||
/**
|
||||
* mail_changeFolder
|
||||
* @param folder, the ID of the selected Node
|
||||
* @param _widget, handle to the tree widget
|
||||
*/
|
||||
mail_changeFolder: function(folder,_widget) {
|
||||
mail_changeFolder: function(folder,_widget) {
|
||||
//alert('change Folder called:'+folder);
|
||||
app.mail.app_refresh(egw.lang('change folder')+'...', 'mail');
|
||||
var img = _widget.getSelectedNode().images[0]; // fetch first image
|
||||
@ -354,101 +358,101 @@ mail_changeFolder: function(folder,_widget) {
|
||||
//mail_refreshMessageGrid();
|
||||
this.mail_refreshFolderStatus(folder,'forced');
|
||||
this.mail_startTimerFolderStatusUpdate(this.mail_refreshTimeOut);
|
||||
},
|
||||
},
|
||||
|
||||
/**
|
||||
/**
|
||||
* Flag mail as 'read', 'unread', 'flagged' or 'unflagged'
|
||||
*
|
||||
* @param _action _action.id is 'read', 'unread', 'flagged' or 'unflagged'
|
||||
* @param _elems
|
||||
*/
|
||||
mail_flag: function(_action, _elems)
|
||||
{
|
||||
mail_flag: function(_action, _elems)
|
||||
{
|
||||
//alert(_action.id+' - '+_elems[0].id);
|
||||
var msg = this.mail_getFormData(_elems);
|
||||
//
|
||||
this.mail_flagMessages(_action.id,msg);
|
||||
},
|
||||
},
|
||||
|
||||
/**
|
||||
/**
|
||||
* Flag mail as 'read', 'unread', 'flagged' or 'unflagged'
|
||||
*
|
||||
* @param _action _action.id is 'read', 'unread', 'flagged' or 'unflagged'
|
||||
* @param _elems
|
||||
*/
|
||||
mail_flagMessages: function(_flag, _elems)
|
||||
{
|
||||
mail_flagMessages: function(_flag, _elems)
|
||||
{
|
||||
app.mail.app_refresh(egw.lang('flag messages'), 'mail');
|
||||
var request = new egw_json_request('mail.mail_ui.ajax_flagMessages',[_flag, _elems]);
|
||||
request.sendRequest(false);
|
||||
this.mail_refreshMessageGrid()
|
||||
},
|
||||
this.mail_refreshMessageGrid();
|
||||
},
|
||||
|
||||
/**
|
||||
/**
|
||||
* display header lines, or source of mail, depending on the url given
|
||||
*
|
||||
* @param _url
|
||||
*/
|
||||
mail_displayHeaderLines: function(_url) {
|
||||
mail_displayHeaderLines: function(_url) {
|
||||
// only used by right clickaction
|
||||
egw_openWindowCentered(_url,'mail_display_headerLines','700','600',window.outerWidth/2,window.outerHeight/2);
|
||||
},
|
||||
},
|
||||
|
||||
/**
|
||||
/**
|
||||
* View header of a message
|
||||
*
|
||||
* @param _action
|
||||
* @param _elems _elems[0].id is the row-id
|
||||
*/
|
||||
mail_header: function(_action, _elems)
|
||||
{
|
||||
mail_header: function(_action, _elems)
|
||||
{
|
||||
//alert('mail_header('+_elems[0].id+')');
|
||||
var url = window.egw_webserverUrl+'/index.php?';
|
||||
url += 'menuaction=mail.mail_ui.displayHeader'; // todo compose for Draft folder
|
||||
url += '&id='+_elems[0].id;
|
||||
this.mail_displayHeaderLines(url);
|
||||
},
|
||||
},
|
||||
|
||||
/**
|
||||
/**
|
||||
* View message source
|
||||
*
|
||||
* @param _action
|
||||
* @param _elems _elems[0].id is the row-id
|
||||
*/
|
||||
mail_mailsource: function(_action, _elems)
|
||||
{
|
||||
mail_mailsource: function(_action, _elems)
|
||||
{
|
||||
//alert('mail_mailsource('+_elems[0].id+')');
|
||||
var url = window.egw_webserverUrl+'/index.php?';
|
||||
url += 'menuaction=mail.mail_ui.saveMessage'; // todo compose for Draft folder
|
||||
url += '&id='+_elems[0].id;
|
||||
url += '&location=display';
|
||||
this.mail_displayHeaderLines(url);
|
||||
},
|
||||
},
|
||||
|
||||
/**
|
||||
/**
|
||||
* Save a message
|
||||
*
|
||||
* @param _action
|
||||
* @param _elems _elems[0].id is the row-id
|
||||
*/
|
||||
mail_save: function(_action, _elems)
|
||||
{
|
||||
mail_save: function(_action, _elems)
|
||||
{
|
||||
//alert('mail_save('+_elems[0].id+')');
|
||||
var url = window.egw_webserverUrl+'/index.php?';
|
||||
url += 'menuaction=mail.mail_ui.saveMessage'; // todo compose for Draft folder
|
||||
url += '&id='+_elems[0].id;
|
||||
//window.open(url,'_blank','dependent=yes,width=100,height=100,scrollbars=yes,status=yes')
|
||||
//window.open(url,'_blank','dependent=yes,width=100,height=100,scrollbars=yes,status=yes');
|
||||
document.location = url;
|
||||
},
|
||||
},
|
||||
|
||||
/**
|
||||
/**
|
||||
* Save a message to filemanager
|
||||
*
|
||||
* @param _action
|
||||
* @param _elems _elems[0].id is the row-id
|
||||
*/
|
||||
mail_save2fm: function(_action, _elems)
|
||||
{
|
||||
mail_save2fm: function(_action, _elems)
|
||||
{
|
||||
var _id = _elems[0].id;
|
||||
var dataElem = egw.dataGetUIDdata(_id);
|
||||
var url = window.egw_webserverUrl+'/index.php?';
|
||||
@ -464,46 +468,46 @@ mail_save2fm: function(_action, _elems)
|
||||
//document.location = url;
|
||||
egw_openWindowCentered(url,'vfs_save_message_'+_elems[0].id,'640','570',window.outerWidth/2,window.outerHeight/2);
|
||||
|
||||
},
|
||||
},
|
||||
|
||||
/**
|
||||
/**
|
||||
* Save message as InfoLog
|
||||
*
|
||||
* @param _action
|
||||
* @param _elems _elems[0].id is the row-id
|
||||
*/
|
||||
mail_infolog: function(_action, _elems)
|
||||
{
|
||||
mail_infolog: function(_action, _elems)
|
||||
{
|
||||
//alert('mail_infolog('+_elems[0].id+')');return;
|
||||
var url = window.egw_webserverUrl+'/index.php?';
|
||||
url += 'menuaction=infolog.infolog_ui.import_mail'; // todo compose for Draft folder
|
||||
url += '&rowid='+_elems[0].id;
|
||||
egw_openWindowCentered(url,'import_mail_'+_elems[0].id,_action.data.width,_action.data.height);
|
||||
},
|
||||
},
|
||||
|
||||
/**
|
||||
/**
|
||||
* Save message as ticket
|
||||
*
|
||||
* @param _action _action.id is 'read', 'unread', 'flagged' or 'unflagged'
|
||||
* @param _elems
|
||||
*/
|
||||
mail_tracker: function(_action, _elems)
|
||||
{
|
||||
mail_tracker: function(_action, _elems)
|
||||
{
|
||||
//alert('mail_tracker('+_elems[0].id+')');
|
||||
var url = window.egw_webserverUrl+'/index.php?';
|
||||
url += 'menuaction=tracker.tracker_ui.import_mail'; // todo compose for Draft folder
|
||||
url += '&rowid='+_elems[0].id;
|
||||
egw_openWindowCentered(url,'import_tracker_'+_elems[0].id,_action.data.width,_action.data.height);
|
||||
},
|
||||
},
|
||||
|
||||
|
||||
/**
|
||||
/**
|
||||
* mail_getFormData
|
||||
*
|
||||
* @param _actionObjects, the senders
|
||||
* @return structured array of message ids: array(msg=>message-ids)
|
||||
*/
|
||||
mail_getFormData: function(_actionObjects) {
|
||||
mail_getFormData: function(_actionObjects) {
|
||||
var messages = {};
|
||||
if (_actionObjects.length>0)
|
||||
{
|
||||
@ -519,48 +523,47 @@ mail_getFormData: function(_actionObjects) {
|
||||
}
|
||||
|
||||
return messages;
|
||||
},
|
||||
},
|
||||
|
||||
/**
|
||||
/**
|
||||
* mail_setRowClass
|
||||
*
|
||||
* @param _actionObjects, the senders
|
||||
*/
|
||||
mail_setRowClass: function(_actionObjects,_class) {
|
||||
mail_setRowClass: function(_actionObjects,_class) {
|
||||
if (typeof _class == 'undefined') return false;
|
||||
|
||||
for (var i = 0; i < _actionObjects.length; i++)
|
||||
{
|
||||
if (_actionObjects[i].id.length>0)
|
||||
{
|
||||
var _id = _actionObjects[i].id;
|
||||
var dataElem = $j(_actionObjects[i].iface.getDOMNode());
|
||||
dataElem.addClass(_class);
|
||||
|
||||
}
|
||||
}
|
||||
},
|
||||
},
|
||||
|
||||
// Tree widget stubs
|
||||
/**
|
||||
// Tree widget stubs
|
||||
/**
|
||||
* mail_dragStart - displays information while dragging
|
||||
*
|
||||
* @param action
|
||||
* @param _senders - the representation of the elements dragged
|
||||
* @return the ddhelper
|
||||
*/
|
||||
mail_dragStart: function(action,_senders) {
|
||||
mail_dragStart: function(action,_senders) {
|
||||
//console.log(action,_senders);
|
||||
return $j("<div class=\"ddhelper\">" + _senders.length + " Mails selected </div>")
|
||||
},
|
||||
/**
|
||||
return $j("<div class=\"ddhelper\">" + _senders.length + " Mails selected </div>");
|
||||
},
|
||||
/**
|
||||
* mail_move - implementation of the move action from drag n drop
|
||||
*
|
||||
* @param _action
|
||||
* @param _senders - the representation of the elements dragged
|
||||
* @param _target - the representation of the target
|
||||
*/
|
||||
mail_move: function(_action,_senders,_target) {
|
||||
mail_move: function(_action,_senders,_target) {
|
||||
//console.log(_action,_senders,_target);
|
||||
var target = _action.id == 'drop_move_mail' ? _target.iface.id : _action.id.substr(5);
|
||||
var messages = this.mail_getFormData(_senders);
|
||||
@ -569,16 +572,16 @@ mail_move: function(_action,_senders,_target) {
|
||||
// as the "onNodeSelect" function!
|
||||
var request = new egw_json_request('mail.mail_ui.ajax_moveMessages',[target, messages]);
|
||||
request.sendRequest(false);
|
||||
this.mail_refreshMessageGrid()
|
||||
},
|
||||
/**
|
||||
this.mail_refreshMessageGrid();
|
||||
},
|
||||
/**
|
||||
* mail_copy - implementation of the copy action from drag n drop
|
||||
*
|
||||
* @param _action
|
||||
* @param _senders - the representation of the elements dragged
|
||||
* @param _target - the representation of the target
|
||||
*/
|
||||
mail_copy: function(_action,_senders,_target) {
|
||||
mail_copy: function(_action,_senders,_target) {
|
||||
//console.log(_action,_senders,_target);
|
||||
var target = _action.id == 'drop_copy_mail' ? _target.id : _action.id.substr(5);
|
||||
var messages = this.mail_getFormData(_senders);
|
||||
@ -587,15 +590,15 @@ mail_copy: function(_action,_senders,_target) {
|
||||
// as the "onNodeSelect" function!
|
||||
var request = new egw_json_request('mail.mail_ui.ajax_copyMessages',[target, messages]);
|
||||
request.sendRequest(false);
|
||||
this.mail_refreshMessageGrid()
|
||||
},
|
||||
/**
|
||||
this.mail_refreshMessageGrid();
|
||||
},
|
||||
/**
|
||||
* mail_RenameFolder - implementation of the RenameFolder action of right click options on the tree
|
||||
*
|
||||
* @param _action
|
||||
* @param _senders - the representation of the tree leaf to be manipulated
|
||||
*/
|
||||
mail_RenameFolder: function(action,_senders) {
|
||||
mail_RenameFolder: function(action,_senders) {
|
||||
//console.log(action,_senders);
|
||||
//action.id == 'rename'
|
||||
//_senders.iface.id == target leaf / leaf to edit
|
||||
@ -613,5 +616,5 @@ mail_RenameFolder: function(action,_senders) {
|
||||
var request = new egw_json_request('mail.mail_ui.ajax_renameFolder',[_senders[0].iface.id, NewFolderName]);
|
||||
request.sendRequest(false);
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user