|
|
@ -35488,13 +35488,15 @@ BI.Single = BI.inherit(BI.Widget, { |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
_clearTimeOut: function() { |
|
|
|
_clearTimeOut: function() { |
|
|
|
|
|
|
|
console.log(this.showTimeout); |
|
|
|
|
|
|
|
console.log(BI.isNotNull(this.showTimeout)); |
|
|
|
if (BI.isNotNull(this.showTimeout)) { |
|
|
|
if (BI.isNotNull(this.showTimeout)) { |
|
|
|
clearTimeout(this.showTimeout); |
|
|
|
clearTimeout(this.showTimeout); |
|
|
|
this.showTimeout = null; |
|
|
|
this.showTimeout = null; |
|
|
|
} |
|
|
|
} |
|
|
|
if (BI.isNotNull(this.hideTimeout)) { |
|
|
|
if (BI.isNotNull(this.hideTimeout)) { |
|
|
|
clearTimeout(this.hideTimeout); |
|
|
|
clearTimeout(this.hideTimeout); |
|
|
|
this.showTimeout = null; |
|
|
|
this.hideTimeout = null; |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
@ -35506,11 +35508,15 @@ BI.Single = BI.inherit(BI.Widget, { |
|
|
|
self._e = e; |
|
|
|
self._e = e; |
|
|
|
if (self.getTipType() === "warning" || (BI.isKey(self.getWarningTitle()) && !self.isEnabled())) { |
|
|
|
if (self.getTipType() === "warning" || (BI.isKey(self.getWarningTitle()) && !self.isEnabled())) { |
|
|
|
self.showTimeout = BI.delay(function () { |
|
|
|
self.showTimeout = BI.delay(function () { |
|
|
|
|
|
|
|
if (BI.isNotNull(self.showTimeout)) { |
|
|
|
self._showToolTip(self._e || e, opt); |
|
|
|
self._showToolTip(self._e || e, opt); |
|
|
|
|
|
|
|
} |
|
|
|
}, 200); |
|
|
|
}, 200); |
|
|
|
} else if (self.getTipType() === "success" || self.isEnabled()) { |
|
|
|
} else if (self.getTipType() === "success" || self.isEnabled()) { |
|
|
|
self.showTimeout = BI.delay(function () { |
|
|
|
self.showTimeout = BI.delay(function () { |
|
|
|
|
|
|
|
if (BI.isNotNull(self.showTimeout)) { |
|
|
|
self._showToolTip(self._e || e, opt); |
|
|
|
self._showToolTip(self._e || e, opt); |
|
|
|
|
|
|
|
} |
|
|
|
}, 500); |
|
|
|
}, 500); |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
@ -35522,22 +35528,28 @@ BI.Single = BI.inherit(BI.Widget, { |
|
|
|
} |
|
|
|
} |
|
|
|
if(BI.isNull(self.hideTimeout)) { |
|
|
|
if(BI.isNull(self.hideTimeout)) { |
|
|
|
self.hideTimeout = BI.delay(function () { |
|
|
|
self.hideTimeout = BI.delay(function () { |
|
|
|
|
|
|
|
if (BI.isNotNull(self.hideTimeout)) { |
|
|
|
self._hideTooltip(); |
|
|
|
self._hideTooltip(); |
|
|
|
|
|
|
|
} |
|
|
|
}, 500); |
|
|
|
}, 500); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
self.showTimeout = BI.delay(function () { |
|
|
|
self.showTimeout = BI.delay(function () { |
|
|
|
|
|
|
|
// DEC-5321 IE下如果回调已经进入事件队列,clearTimeout将不会起作用
|
|
|
|
|
|
|
|
if (BI.isNotNull(self.showTimeout)) { |
|
|
|
if (BI.isNotNull(self.hideTimeout)) { |
|
|
|
if (BI.isNotNull(self.hideTimeout)) { |
|
|
|
clearTimeout(self.hideTimeout); |
|
|
|
clearTimeout(self.hideTimeout); |
|
|
|
self.hideTimeout = null; |
|
|
|
self.hideTimeout = null; |
|
|
|
} |
|
|
|
} |
|
|
|
self._showToolTip(self._e || e, opt); |
|
|
|
self._showToolTip(self._e || e, opt); |
|
|
|
|
|
|
|
} |
|
|
|
}, 500); |
|
|
|
}, 500); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}); |
|
|
|
}); |
|
|
|
this.element.on("mouseleave.title" + this.getName(), function (e) { |
|
|
|
this.element.on("mouseleave.title" + this.getName(), function (e) { |
|
|
|
self._e = null; |
|
|
|
self._e = null; |
|
|
|
|
|
|
|
console.log("clear all"); |
|
|
|
self._clearTimeOut(); |
|
|
|
self._clearTimeOut(); |
|
|
|
self._hideTooltip(); |
|
|
|
self._hideTooltip(); |
|
|
|
}); |
|
|
|
}); |
|
|
|