|
|
@ -14,6 +14,9 @@ BI.AbstractTreeValueChooser = BI.inherit(BI.Widget, { |
|
|
|
|
|
|
|
|
|
|
|
_valueFormatter: function (v) { |
|
|
|
_valueFormatter: function (v) { |
|
|
|
var text = v; |
|
|
|
var text = v; |
|
|
|
|
|
|
|
if (this.options.valueFormatter) { |
|
|
|
|
|
|
|
return this.options.valueFormatter(v); |
|
|
|
|
|
|
|
} |
|
|
|
if (BI.isNotNull(this.items)) { |
|
|
|
if (BI.isNotNull(this.items)) { |
|
|
|
BI.some(this.items, function (i, item) { |
|
|
|
BI.some(this.items, function (i, item) { |
|
|
|
if (item.value === v || item.value + "" === v) { |
|
|
|
if (item.value === v || item.value + "" === v) { |
|
|
|