|
|
@ -80,6 +80,8 @@ |
|
|
|
var text = this._getShowText(); |
|
|
|
var text = this._getShowText(); |
|
|
|
if (BI.isKey(text)) { |
|
|
|
if (BI.isKey(text)) { |
|
|
|
this.setText(text); |
|
|
|
this.setText(text); |
|
|
|
|
|
|
|
} else if (BI.isKey(o.value)) { |
|
|
|
|
|
|
|
this.setText(o.value); |
|
|
|
} |
|
|
|
} |
|
|
|
if (BI.isKey(o.keyword)) { |
|
|
|
if (BI.isKey(o.keyword)) { |
|
|
|
this.doRedMark(o.keyword); |
|
|
|
this.doRedMark(o.keyword); |
|
|
@ -103,6 +105,7 @@ |
|
|
|
_getShowText: function () { |
|
|
|
_getShowText: function () { |
|
|
|
var o = this.options; |
|
|
|
var o = this.options; |
|
|
|
var text = BI.isFunction(o.text) ? o.text() : o.text; |
|
|
|
var text = BI.isFunction(o.text) ? o.text() : o.text; |
|
|
|
|
|
|
|
text = BI.isKey(text) ? text : o.value; |
|
|
|
if (!BI.isKey(text)) { |
|
|
|
if (!BI.isKey(text)) { |
|
|
|
return ""; |
|
|
|
return ""; |
|
|
|
} |
|
|
|
} |
|
|
|