Browse Source

BI-10584 文本组件遮盖

es6
windy 7 years ago
parent
commit
53ee8cba1a
  1. 3
      src/base/combination/combo.js
  2. 2
      src/base/single/editor/editor.code.js

3
src/base/combination/combo.js

@ -219,7 +219,8 @@ BI.Combo = BI.inherit(BI.Widget, {
// if (this.element.__isMouseInBounds__(e) || (this.popupView && this.popupView.element.__isMouseInBounds__(e))) { // if (this.element.__isMouseInBounds__(e) || (this.popupView && this.popupView.element.__isMouseInBounds__(e))) {
// return; // return;
// } // }
if (this.element.find(e.target).length > 0 || e.target.className === "CodeMirror-cursor" || $(e.target).closest(".CodeMirror-hints").length > 0) {//BI-9887 CodeMirror的公式弹框需要特殊处理下 //BI-10290 公式combo双击公式内容会收起
if (this.element.find(e.target).length > 0 || $(e.target).closest(".CodeMirror").length > 0 || $(e.target).closest(".CodeMirror-hints").length > 0) {//BI-9887 CodeMirror的公式弹框需要特殊处理下
return; return;
} }
var isHide = this.options.hideChecker.apply(this, [e]); var isHide = this.options.hideChecker.apply(this, [e]);

2
src/base/single/editor/editor.code.js

@ -50,7 +50,7 @@ BI.CodeEditor = BI.inherit(BI.Single, {
BI.nextTick(function () { BI.nextTick(function () {
self.fireEvent(BI.CodeEditor.EVENT_FOCUS); self.fireEvent(BI.CodeEditor.EVENT_FOCUS);
}); });
e.stopPropagation(); //e.stopPropagation();
}); });
// this.editor.on("blur", function () { // this.editor.on("blur", function () {

Loading…
Cancel
Save