|
|
@ -67,7 +67,7 @@ BI.SingleSelectSearchPane = BI.inherit(BI.Widget, { |
|
|
|
|
|
|
|
|
|
|
|
setKeyword: function (keyword) { |
|
|
|
setKeyword: function (keyword) { |
|
|
|
var btn, o = this.options; |
|
|
|
var btn, o = this.options; |
|
|
|
var isVisible = this.loader.getAllButtons().length > 0 && (btn = this.loader.getAllButtons()[0]) && (keyword === (o.valueFormatter(btn.getValue()) || btn.getValue())); |
|
|
|
var isVisible = this.loader.getAllButtons().length > 0 && (btn = this.loader.getAllButtons()[0]) && keyword === btn.getValue(); |
|
|
|
if (isVisible !== this.tooltipClick.isVisible()) { |
|
|
|
if (isVisible !== this.tooltipClick.isVisible()) { |
|
|
|
this.tooltipClick.setVisible(isVisible); |
|
|
|
this.tooltipClick.setVisible(isVisible); |
|
|
|
this.resizer.attr("items")[0].height = (isVisible ? this.constants.height : 0); |
|
|
|
this.resizer.attr("items")[0].height = (isVisible ? this.constants.height : 0); |
|
|
|