Browse Source

Merge pull request #14243 in DEC/fineui from master to feature/x

* commit '5c04cc0fc224d475418fb84d5ece8af2fd8d25fd':
  无JIRA bi.search_editor 有初始值的时候显示清除按钮
  无JIRA bi.search_editor 有初始值的时候显示清除按钮
  无JIRA bi.search_editor 有初始值的时候显示清除按钮
es6
superman 3 years ago
parent
commit
b2fdb6d33f
  1. 8
      src/widget/editor/editor.search.js

8
src/widget/editor/editor.search.js

@ -10,7 +10,8 @@ BI.SearchEditor = BI.inherit(BI.Widget, {
errorText: "", errorText: "",
watermark: BI.i18nText("BI-Basic_Search"), watermark: BI.i18nText("BI-Basic_Search"),
validationChecker: BI.emptyFn, validationChecker: BI.emptyFn,
quitChecker: BI.emptyFn quitChecker: BI.emptyFn,
value: ""
}); });
}, },
_init: function () { _init: function () {
@ -32,7 +33,8 @@ BI.SearchEditor = BI.inherit(BI.Widget, {
this.clear = BI.createWidget({ this.clear = BI.createWidget({
type: "bi.icon_button", type: "bi.icon_button",
stopEvent: true, stopEvent: true,
cls: "close-font" cls: "close-font",
invisible: BI.isKey(o.value)
}); });
this.clear.on(BI.IconButton.EVENT_CHANGE, function () { this.clear.on(BI.IconButton.EVENT_CHANGE, function () {
self.setValue(""); self.setValue("");
@ -123,8 +125,6 @@ BI.SearchEditor = BI.inherit(BI.Widget, {
this.editor.on(BI.Editor.EVENT_STOP, function () { this.editor.on(BI.Editor.EVENT_STOP, function () {
self.fireEvent(BI.SearchEditor.EVENT_STOP); self.fireEvent(BI.SearchEditor.EVENT_STOP);
}); });
this.clear.invisible();
}, },
_checkClear: function () { _checkClear: function () {

Loading…
Cancel
Save