mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:05:16 +01:00
Fix "From" field in mail display always get abbreviated
This commit is contained in:
parent
b121039ef1
commit
a317c6b1c0
@ -244,6 +244,12 @@ var et2_url_ro = (function(){ "use strict"; return et2_valueWidget.extend([et2_I
|
|||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"default": false,
|
"default": false,
|
||||||
"description": "Allow to add email as contact to addressbook"
|
"description": "Allow to add email as contact to addressbook"
|
||||||
|
},
|
||||||
|
"full_email": {
|
||||||
|
"name": "Show full email address",
|
||||||
|
"type": "boolean",
|
||||||
|
"default": true,
|
||||||
|
"description": "Allow to show full email address if ture otherwise show only name"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -315,7 +321,7 @@ var et2_url_ro = (function(){ "use strict"; return et2_valueWidget.extend([et2_I
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
// wrap email address if there's a name
|
// wrap email address if there's a name
|
||||||
if (this.span.text() && this.span.text().split("<"))
|
if (this.span.text() && this.span.text().split("<") && this.options.full_email)
|
||||||
{
|
{
|
||||||
var val = this.span.text().split("<");
|
var val = this.span.text().split("<");
|
||||||
val = val[0] != ""? val[0]: val[2];
|
val = val[0] != ""? val[0]: val[2];
|
||||||
|
@ -792,7 +792,14 @@ app.classes.mail = AppJS.extend(
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
var value = remembervalue+(remembervalue?',':'')+content[i];
|
var value = remembervalue+(remembervalue?',':'')+content[i];
|
||||||
var email = et2_createWidget('url-email',{id:widget.id+'_'+i, value:value,readonly:true, contact_plus:true},widget);
|
var url_email_options = {
|
||||||
|
id:widget.id+'_'+i,
|
||||||
|
value:value,
|
||||||
|
readonly:true,
|
||||||
|
contact_plus:true,
|
||||||
|
full_email:typeof field['full_email'] !='undefined'?field['full_email']:true
|
||||||
|
};
|
||||||
|
var email = et2_createWidget('url-email',url_email_options,widget);
|
||||||
email.loadingFinished();
|
email.loadingFinished();
|
||||||
remembervalue = '';
|
remembervalue = '';
|
||||||
}
|
}
|
||||||
@ -830,7 +837,7 @@ app.classes.mail = AppJS.extend(
|
|||||||
var dataElem = {data:{FROM:"",SENDER:"",TO:"",CC:"",BCC:""}};
|
var dataElem = {data:{FROM:"",SENDER:"",TO:"",CC:"",BCC:""}};
|
||||||
var content = this.et2.getArrayMgr('content').data;
|
var content = this.et2.getArrayMgr('content').data;
|
||||||
var expand_content = [
|
var expand_content = [
|
||||||
{build_children: true, data_one: 'FROM', data: 'FROM', widget: 'FROM', line: 'mailDisplayHeadersFrom'},
|
{build_children: true, data_one: 'FROM', data: 'FROM', widget: 'FROM', line: 'mailDisplayHeadersFrom', full_email:false},
|
||||||
{build_children: true, data: 'SENDER', widget: 'SENDER', line: 'mailDisplayHeadersSender'},
|
{build_children: true, data: 'SENDER', widget: 'SENDER', line: 'mailDisplayHeadersSender'},
|
||||||
{build_children: true, data: 'TO', widget: 'TO', line: 'mailDisplayHeadersTo'},
|
{build_children: true, data: 'TO', widget: 'TO', line: 'mailDisplayHeadersTo'},
|
||||||
{build_children: true, data: 'CC', widget: 'CC', line: 'mailDisplayHeadersCc'},
|
{build_children: true, data: 'CC', widget: 'CC', line: 'mailDisplayHeadersCc'},
|
||||||
|
Loading…
Reference in New Issue
Block a user