我使用jQuery editinPlace插件,默认的编辑方式是在选择器上使用单击事件,但我要做的是通过调用函数"rename();"的上下文菜单。那么我如何阻止内联编辑点击事件。请分享一些关于如何做到这一点的想法…
$('.context').editInPlace({
callback: function(idOfEditor) {
var renameUrl = "http://www.google.com/"+tablerowId+"/"+enteredText+"";
return enteredText;
}
});
打开/jquery.editinplace.js源文件。(网络版> http://code.google.com/p/jquery-in-place-editor/source/browse/trunk/lib/jquery.editinplace.js)
在第一个函数声明$.fn.editInPlace
#26行中,更改以下行:
new InlineEditor(settings, dom).init();
into>
dom.theEditor = new InlineEditor(settings, dom);
dom.theEditor.init();
dom.data("theEditor", dom.theEditor);
现在在你的上下文菜单函数的click事件中,调用这个>
$("#myContextMenuElement").live("click", function (e) {
//your other code
rename(e); //you need to pass the event argument to it now
});
一定要把'e'加进去。
和重命名函数>
function rename(e) {
$("#myElementToEditInPlace").data("theEditor").openEditor(e);
}
妙不可言
编辑:要确保您不允许用户通过单击para本身来激活编辑器>,请使用以下代码:
var myDelegate = {
shouldOpenEditInPlace: function (a, b, c) {
if (c.target.id != "idOfYourContextElement") { //if the edit was not invoked through the context menu option
return false; //cancel the editor open event
}
return true;
}
};
并在初始化中添加委托>
$('.context').editInPlace({
callback: function(idOfEditor) {
var renameUrl = "http://www.google.com/"+tablerowId+"/"+enteredText+"";
return enteredText;
},
delegate: del
});