mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-03 04:29:28 +01:00
fixed phone popup (opening on [More...]) does not show always shown numbers (work, cell, home, fax) and if they are prefered, also changes made to them get not propagated back
This commit is contained in:
parent
8d86f8496b
commit
8525d55080
@ -157,45 +157,63 @@ app.classes.addressbook = AppJS.extend(
|
|||||||
nm_action(_action, _senders);
|
nm_action(_action, _senders);
|
||||||
},
|
},
|
||||||
|
|
||||||
showphones: function(form)
|
/**
|
||||||
|
* [More...] in phones clicked: copy allways shown phone numbers to phone popup
|
||||||
|
*
|
||||||
|
* @param {jQuery.event} _event
|
||||||
|
* @param {et2_widget} _widget
|
||||||
|
*/
|
||||||
|
showphones: function(_event, _widget)
|
||||||
{
|
{
|
||||||
if (form) {
|
this._copyvalues({
|
||||||
copyvalues(form,"tel_home","tel_home2");
|
tel_home: 'tel_home2',
|
||||||
copyvalues(form,"tel_work","tel_work2");
|
tel_work: 'tel_work2',
|
||||||
copyvalues(form,"tel_cell","tel_cell2");
|
tel_cell: 'tel_cell2',
|
||||||
copyvalues(form,"tel_fax","tel_fax2");
|
tel_fax: 'tel_fax2',
|
||||||
}
|
});
|
||||||
|
jQuery('table.editphones').css('display','inline');
|
||||||
|
|
||||||
|
_event.stopPropagation();
|
||||||
|
return false;
|
||||||
},
|
},
|
||||||
|
|
||||||
hidephones: function(form)
|
/**
|
||||||
|
* [OK] in phone popup clicked: copy phone numbers back to always shown ones
|
||||||
|
*
|
||||||
|
* @param {jQuery.event} _event
|
||||||
|
* @param {et2_widget} _widget
|
||||||
|
*/
|
||||||
|
hidephones: function(_event, _widget)
|
||||||
{
|
{
|
||||||
if (form) {
|
this._copyvalues({
|
||||||
copyvalues(form,"tel_home2","tel_home");
|
tel_home2: 'tel_home',
|
||||||
copyvalues(form,"tel_work2","tel_work");
|
tel_work2: 'tel_work',
|
||||||
copyvalues(form,"tel_cell2","tel_cell");
|
tel_cell2: 'tel_cell',
|
||||||
copyvalues(form,"tel_fax2","tel_fax");
|
tel_fax2: 'tel_fax',
|
||||||
}
|
});
|
||||||
|
jQuery('table.editphones').css('display','none');
|
||||||
|
|
||||||
|
_event.stopPropagation();
|
||||||
|
return false;
|
||||||
},
|
},
|
||||||
|
|
||||||
copyvalues: function(form,src,dst)
|
/**
|
||||||
|
* Copy content of multiple fields
|
||||||
|
*
|
||||||
|
* @param {object} what object with src: dst pairs
|
||||||
|
*/
|
||||||
|
_copyvalues: function(what)
|
||||||
{
|
{
|
||||||
var srcelement = getElement(form,src); //ById("exec["+src+"]");
|
for(var name in what)
|
||||||
var dstelement = getElement(form,dst); //ById("exec["+dst+"]");
|
{
|
||||||
if (srcelement && dstelement) {
|
var src = this.et2.getWidgetById(name);
|
||||||
dstelement.value = srcelement.value;
|
var dst = this.et2.getWidgetById(what[name]);
|
||||||
}
|
if (src && dst) dst.set_value(src.get_value());
|
||||||
},
|
|
||||||
|
|
||||||
getElement: function(form,pattern)
|
|
||||||
{
|
|
||||||
for (i = 0; i < form.length; i++){
|
|
||||||
if(form.elements[i].name){
|
|
||||||
var found = form.elements[i].name.search("\\["+pattern+"\\]");
|
|
||||||
if (found != -1){
|
|
||||||
return form.elements[i];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
// change tel_prefer according to what
|
||||||
|
var tel_prefer = this.et2.getWidgetById('tel_prefer');
|
||||||
|
if (tel_prefer && typeof what[tel_prefer.get_value()] != 'undefined')
|
||||||
|
tel_prefer.set_value(what[tel_prefer.get_value()]);
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -257,7 +275,7 @@ app.classes.addressbook = AppJS.extend(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param {widget} widget widget
|
* @param {widget} widget widget
|
||||||
@ -282,7 +300,7 @@ app.classes.addressbook = AppJS.extend(
|
|||||||
var name = template.widgetContainer.getWidgetById("n_fn");
|
var name = template.widgetContainer.getWidgetById("n_fn");
|
||||||
if (typeof name != 'undefined') name.set_value(value);
|
if (typeof name != 'undefined') name.set_value(value);
|
||||||
}
|
}
|
||||||
|
|
||||||
egw.json('addressbook.addressbook_ui.ajax_check_values', [values, widget.id, own_id],this._confirmdialog_callback,this,true,this).sendRequest();
|
egw.json('addressbook.addressbook_ui.ajax_check_values', [values, widget.id, own_id],this._confirmdialog_callback,this,true,this).sendRequest();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -52,11 +52,11 @@
|
|||||||
</row>
|
</row>
|
||||||
</rows>
|
</rows>
|
||||||
</grid>
|
</grid>
|
||||||
</template>
|
</template>
|
||||||
<template id="addressbook.edit.general" template="" lang="" group="0" version="1.9.003">
|
<template id="addressbook.edit.general" template="" lang="" group="0" version="1.9.003">
|
||||||
|
|
||||||
<!-- <image src="accounts"/> -->
|
<!-- <image src="accounts"/> -->
|
||||||
|
|
||||||
<grid class="addressbook_edit_general">
|
<grid class="addressbook_edit_general">
|
||||||
<columns>
|
<columns>
|
||||||
<column width="80%" class="addressbook_edit_general_left"/>
|
<column width="80%" class="addressbook_edit_general_left"/>
|
||||||
@ -75,24 +75,24 @@
|
|||||||
<row>
|
<row>
|
||||||
<description value="Name"/>
|
<description value="Name"/>
|
||||||
<textbox id="n_fn" no_lang="1" onclick="jQuery('table.editname').css('display','inline'); var focElem = document.getElementById(form::name('n_prefix')); if (!(typeof(focElem) == 'undefined') && typeof(focElem.focus)=='function') document.getElementById(form::name('n_prefix')).focus();" rows="1" size="36" span="3" tabindex="-1" class="cursorHand"/>
|
<textbox id="n_fn" no_lang="1" onclick="jQuery('table.editname').css('display','inline'); var focElem = document.getElementById(form::name('n_prefix')); if (!(typeof(focElem) == 'undefined') && typeof(focElem.focus)=='function') document.getElementById(form::name('n_prefix')).focus();" rows="1" size="36" span="3" tabindex="-1" class="cursorHand"/>
|
||||||
|
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<description/>
|
<description/>
|
||||||
<template id="addressbook.edit.name"/>
|
<template id="addressbook.edit.name"/>
|
||||||
|
|
||||||
</row>
|
</row>
|
||||||
|
|
||||||
<row>
|
<row>
|
||||||
<description for="title" value="Title"/>
|
<description for="title" value="Title"/>
|
||||||
<textbox id="title" size="36" maxlength="64" span="2"/>
|
<textbox id="title" size="36" maxlength="64" span="2"/>
|
||||||
|
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<description for="role" value="Role"/>
|
<description for="role" value="Role"/>
|
||||||
<textbox id="role" size="20" maxlength="64"/>
|
<textbox id="role" size="20" maxlength="64"/>
|
||||||
<textbox label="Room" id="room" size="5"/>
|
<textbox label="Room" id="room" size="5"/>
|
||||||
|
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<!-- <image src="home"/> -->
|
<!-- <image src="home"/> -->
|
||||||
@ -163,7 +163,7 @@
|
|||||||
</menulist>
|
</menulist>
|
||||||
</row>
|
</row>
|
||||||
</rows>
|
</rows>
|
||||||
|
|
||||||
</grid>
|
</grid>
|
||||||
<hbox disabled="@hidebuttons" class="addressbook_edit_general_picture">
|
<hbox disabled="@hidebuttons" class="addressbook_edit_general_picture">
|
||||||
<image src="photo" onclick="jQuery('table.uploadphoto').css('display','inline'); return false;" class="photo"/>
|
<image src="photo" onclick="jQuery('table.uploadphoto').css('display','inline'); return false;" class="photo"/>
|
||||||
@ -171,7 +171,7 @@
|
|||||||
</hbox>
|
</hbox>
|
||||||
</row>
|
</row>
|
||||||
</rows>
|
</rows>
|
||||||
</grid>
|
</grid>
|
||||||
</template>
|
</template>
|
||||||
<template id="addressbook.edit.cats" template="" lang="" group="0" version="1.9.002">
|
<template id="addressbook.edit.cats" template="" lang="" group="0" version="1.9.002">
|
||||||
<grid width="100%" height="286" overflow="auto">
|
<grid width="100%" height="286" overflow="auto">
|
||||||
@ -319,7 +319,7 @@
|
|||||||
</grid>
|
</grid>
|
||||||
</template>
|
</template>
|
||||||
<template id="addressbook.edit.links" template="" lang="" group="0" version="1.9.001">
|
<template id="addressbook.edit.links" template="" lang="" group="0" version="1.9.001">
|
||||||
|
|
||||||
<grid width="100%" overflow="auto">
|
<grid width="100%" overflow="auto">
|
||||||
<columns>
|
<columns>
|
||||||
<column/>
|
<column/>
|
||||||
@ -431,17 +431,17 @@
|
|||||||
<row>
|
<row>
|
||||||
<description for="tel_work2" value="business" class="bold"/>
|
<description for="tel_work2" value="business" class="bold"/>
|
||||||
<url-phone id="tel_work2" options="30"/>
|
<url-phone id="tel_work2" options="30"/>
|
||||||
<radio statustext="select phone number as prefered way of contact" id="tel_prefer" options="tel_work,&hearts;"/>
|
<radio statustext="select phone number as prefered way of contact" id="tel_prefer" options="tel_work2,&hearts;"/>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<description for="tel_cell2" value="mobile phone"/>
|
<description for="tel_cell2" value="mobile phone"/>
|
||||||
<url-phone id="tel_cell2" options="30"/>
|
<url-phone id="tel_cell2" options="30"/>
|
||||||
<radio statustext="select phone number as prefered way of contact" id="tel_prefer" options="tel_cell,&hearts;"/>
|
<radio statustext="select phone number as prefered way of contact" id="tel_prefer" options="tel_cell2,&hearts;"/>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<description for="tel_fax" value="fax"/>
|
<description for="tel_fax2" value="fax"/>
|
||||||
<url-phone id="tel_fax2" options="30"/>
|
<url-phone id="tel_fax2" options="30"/>
|
||||||
<radio statustext="select phone number as prefered way of contact" id="tel_prefer" options="tel_fax,&hearts;"/>
|
<radio statustext="select phone number as prefered way of contact" id="tel_prefer" options="tel_fax2,&hearts;"/>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<description for="tel_car" value="car phone"/>
|
<description for="tel_car" value="car phone"/>
|
||||||
@ -471,7 +471,7 @@
|
|||||||
<row>
|
<row>
|
||||||
<description for="tel_home2" value="Private" class="bold"/>
|
<description for="tel_home2" value="Private" class="bold"/>
|
||||||
<url-phone id="tel_home2" options="30"/>
|
<url-phone id="tel_home2" options="30"/>
|
||||||
<radio statustext="select phone number as prefered way of contact" id="tel_prefer" options="tel_home,&hearts;"/>
|
<radio statustext="select phone number as prefered way of contact" id="tel_prefer" options="tel_home2,&hearts;"/>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<description for="tel_cell_private" value="mobile phone"/>
|
<description for="tel_cell_private" value="mobile phone"/>
|
||||||
@ -492,7 +492,7 @@
|
|||||||
<radio statustext="select phone number as prefered way of contact" id="tel_prefer" options="tel_other,&hearts;"/>
|
<radio statustext="select phone number as prefered way of contact" id="tel_prefer" options="tel_other,&hearts;"/>
|
||||||
</row>
|
</row>
|
||||||
<row>
|
<row>
|
||||||
<button align="center" label="Ok" id="button[ok]" class="button_ok" onclick="jQuery('table.editphones').css('display','none'); if (window.hidephones) hidephones(this.form); return false;" span="all" image="check" background_image="1"/>
|
<button align="center" label="Ok" id="button[ok]" class="button_ok" onclick="app.addressbook.hidephones" span="all" image="check" background_image="1"/>
|
||||||
</row>
|
</row>
|
||||||
</rows>
|
</rows>
|
||||||
</grid>
|
</grid>
|
||||||
@ -508,7 +508,7 @@
|
|||||||
<htmlarea id="msg" no_lang="1" readonly="true" span="all" class="redItalic"/>
|
<htmlarea id="msg" no_lang="1" readonly="true" span="all" class="redItalic"/>
|
||||||
<description/>
|
<description/>
|
||||||
</row>
|
</row>
|
||||||
|
|
||||||
<row class="dialog-header">
|
<row class="dialog-header">
|
||||||
<menulist>
|
<menulist>
|
||||||
<menupopup blur="Name" class="fileas" statustext="own sorting" id="fileas_type" no_lang="1"/>
|
<menupopup blur="Name" class="fileas" statustext="own sorting" id="fileas_type" no_lang="1"/>
|
||||||
@ -592,7 +592,7 @@
|
|||||||
<row>
|
<row>
|
||||||
<description/>
|
<description/>
|
||||||
<description/>
|
<description/>
|
||||||
<button accesskey="m" label="More ..." id="button[more]" class="button_more" onclick="jQuery('table.editphones').css('display','inline'); if (window.showphones) showphones(this.form); return false;" image="edit" background_image="1"/>
|
<button accesskey="m" label="More ..." id="button[more]" class="button_more" onclick="app.addressbook.showphones" image="edit" background_image="1"/>
|
||||||
<description/>
|
<description/>
|
||||||
</row>
|
</row>
|
||||||
</rows>
|
</rows>
|
||||||
@ -641,7 +641,7 @@
|
|||||||
<button label="Apply" id="button[apply]" class="button_apply" image="apply" background_image="1"/>
|
<button label="Apply" id="button[apply]" class="button_apply" image="apply" background_image="1"/>
|
||||||
<button label="Cancel" id="button[cancel]" class="button_cancel" onclick="if($cont[view] || false) return true; self.close(); return false;" image="cancel" background_image="1"/>
|
<button label="Cancel" id="button[cancel]" class="button_cancel" onclick="if($cont[view] || false) return true; self.close(); return false;" image="cancel" background_image="1"/>
|
||||||
<checkbox statustext="Apply changes to all members, whose fields have the same previous content" label="change all organisation members" id="change_org" span="all"/>
|
<checkbox statustext="Apply changes to all members, whose fields have the same previous content" label="change all organisation members" id="change_org" span="all"/>
|
||||||
<button align="left" label="Delete" id="button[delete]" class="button_delete" onclick="et2_dialog.confirm(widget,'Do you really want to delete this contact?','Delete')" tabindex="25" image="delete" background_image="1"/>
|
<button align="right" label="Delete" id="button[delete]" class="button_delete" onclick="et2_dialog.confirm(widget,'Do you really want to delete this contact?','Delete')" tabindex="25" image="delete" background_image="1"/>
|
||||||
</hbox>
|
</hbox>
|
||||||
|
|
||||||
</row>
|
</row>
|
||||||
|
Loading…
Reference in New Issue
Block a user