If there's no ID, don't even ask for the title

This commit is contained in:
Nathan Gray 2013-03-13 19:32:25 +00:00
parent e685a222dc
commit 4efa3e8be5

View File

@ -847,14 +847,21 @@ var et2_link = et2_valueWidget.extend([et2_IDetachedDOM], {
if(!_value.title) { if(!_value.title) {
var self = this; var self = this;
var node = this.link[0]; var node = this.link[0];
var title = this.egw().link_title(_value.app, _value.id, function(title) {self.set_title(node, title);}, this); if(_value.app && _value.id)
if(title != null) { {
_value.title = title; var title = this.egw().link_title(_value.app, _value.id, function(title) {self.set_title(node, title);}, this);
if(title != null) {
_value.title = title;
}
else
{
// Title will be fetched from server and then set
return;
}
} }
else else
{ {
// Title will be fetched from server and then set _value.title = "";
return;
} }
} }
this.set_title(this.link, _value.title); this.set_title(this.link, _value.title);