mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-18 12:41:10 +01:00
Bind onmouseenter event of add contact+ button on url-email set_value, as widget might be created by apps client side code, not directly loaded from xet file
This commit is contained in:
parent
2abc38e08e
commit
e7bc170c4e
@ -308,6 +308,51 @@ var et2_url_ro = et2_valueWidget.extend([et2_IDetachedDOM],
|
|||||||
this.span.attr("target", "_blank");
|
this.span.attr("target", "_blank");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// Add contact_plus button
|
||||||
|
if (this.options.contact_plus)
|
||||||
|
{
|
||||||
|
// If user doesn't have access to addressbook, stop
|
||||||
|
if(!egw.app('addressbook')) return;
|
||||||
|
|
||||||
|
// Bind onmouseenter event on <a> tag in order to add contact plus
|
||||||
|
this.span.on ({
|
||||||
|
mouseenter: function (event)
|
||||||
|
{
|
||||||
|
event.stopImmediatePropagation();
|
||||||
|
var self = this;
|
||||||
|
jQuery(this).tooltip({
|
||||||
|
items: 'a.et2_email',
|
||||||
|
position: {my:"right top", at:"left top", collision:"flipfit"},
|
||||||
|
tooltipClass: "et2_email_popup",
|
||||||
|
content: function()
|
||||||
|
{
|
||||||
|
// Here we could do all sorts of things
|
||||||
|
var extra = {
|
||||||
|
'presets[email]': jQuery(this).text()
|
||||||
|
};
|
||||||
|
|
||||||
|
return jQuery('<a href="#" title="'+egw.lang('Add a new contact')+'"><img src="'+egw.image("new") +'" style="height:12px;width:12px"/></a>')
|
||||||
|
.on('click', function() {
|
||||||
|
egw.open('','addressbook','add',extra);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
close: function( event, ui )
|
||||||
|
{
|
||||||
|
ui.tooltip.hover(
|
||||||
|
function () {
|
||||||
|
jQuery(this).stop(true).fadeTo(400, 1);
|
||||||
|
//.fadeIn("slow"); // doesn't work because of stop()
|
||||||
|
},
|
||||||
|
function () {
|
||||||
|
jQuery(this).fadeOut("400", function(){ jQuery(this).remove();});
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.tooltip("open");
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -339,51 +384,7 @@ var et2_url_ro = et2_valueWidget.extend([et2_IDetachedDOM],
|
|||||||
{
|
{
|
||||||
_nodes[0].setAttribute("class", _values["class"]);
|
_nodes[0].setAttribute("class", _values["class"]);
|
||||||
}
|
}
|
||||||
// Add contact_plus button
|
|
||||||
if (this.options.contact_plus && this._type == "url-email" )
|
|
||||||
{
|
|
||||||
// If user doesn't have access to addressbook, stop
|
|
||||||
if(!egw.app('addressbook')) return;
|
|
||||||
|
|
||||||
// Bind onmouseenter event on <a> tag in order to add contact plus
|
|
||||||
this.span.on ({
|
|
||||||
mouseenter: function (event)
|
|
||||||
{
|
|
||||||
event.stopImmediatePropagation();
|
|
||||||
var self = this;
|
|
||||||
jQuery(this).tooltip({
|
|
||||||
items: 'a.et2_email',
|
|
||||||
position: {my:"right top", at:"left top", collision:"flipfit"},
|
|
||||||
tooltipClass: "et2_email_popup",
|
|
||||||
content: function()
|
|
||||||
{
|
|
||||||
// Here we could do all sorts of things
|
|
||||||
var extra = {
|
|
||||||
'presets[email]': jQuery(this).text()
|
|
||||||
};
|
|
||||||
|
|
||||||
return jQuery('<a href="#" title="'+egw.lang('Add a new contact')+'"><img src="'+egw.image("new") +'" style="height:12px;width:12px"/></a>')
|
|
||||||
.on('click', function() {
|
|
||||||
egw.open('','addressbook','add',extra);
|
|
||||||
});
|
|
||||||
},
|
|
||||||
close: function( event, ui )
|
|
||||||
{
|
|
||||||
ui.tooltip.hover(
|
|
||||||
function () {
|
|
||||||
jQuery(this).stop(true).fadeTo(400, 1);
|
|
||||||
//.fadeIn("slow"); // doesn't work because of stop()
|
|
||||||
},
|
|
||||||
function () {
|
|
||||||
jQuery(this).fadeOut("400", function(){ jQuery(this).remove();});
|
|
||||||
}
|
|
||||||
);
|
|
||||||
}
|
|
||||||
})
|
|
||||||
.tooltip("open");
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
et2_register_widget(et2_url_ro, ["url_ro", "url-email_ro", "url-phone_ro"]);
|
et2_register_widget(et2_url_ro, ["url_ro", "url-email_ro", "url-phone_ro"]);
|
Loading…
Reference in New Issue
Block a user