diff --git a/calendar/js/et2_widget_owner.js b/calendar/js/et2_widget_owner.js index 17f5d14734..6f82eff507 100644 --- a/calendar/js/et2_widget_owner.js +++ b/calendar/js/et2_widget_owner.js @@ -122,7 +122,10 @@ var et2_calendar_owner = (function(){ "use strict"; return et2_taglist_email.ext if(value.id == value.label) { // Proper label was not fount by parent - ask directly - egw.json('calendar_owner_etemplate_widget::ajax_owner',value.id,function(data) {value.label = data;}, this).sendRequest(); + egw.json('calendar_owner_etemplate_widget::ajax_owner',value.id,function(data) { + this.widget.options.value[this.i].label = data; + this.widget.set_value(this.widget.options.value); + }, this,true,{widget: this, i: i}).sendRequest(); } }