|
|
@ -27908,7 +27908,12 @@ BI.extend(BI.Func, { |
|
|
|
BI.each(items, function (i, item) { |
|
|
|
BI.each(items, function (i, item) { |
|
|
|
item = BI.deepClone(item); |
|
|
|
item = BI.deepClone(item); |
|
|
|
t = BI.stripEL(item); |
|
|
|
t = BI.stripEL(item); |
|
|
|
text = t[param] || t.text || t.value || t.name || t; |
|
|
|
text = BI.find([t[param], t.text, t.value, t.name, t], function (index, val) { |
|
|
|
|
|
|
|
return BI.isNotNull(val); |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (BI.isNull(text) || BI.isObject(text)) return; |
|
|
|
|
|
|
|
|
|
|
|
py = BI.makeFirstPY(text); |
|
|
|
py = BI.makeFirstPY(text); |
|
|
|
text = BI.toUpperCase(text); |
|
|
|
text = BI.toUpperCase(text); |
|
|
|
py = BI.toUpperCase(py); |
|
|
|
py = BI.toUpperCase(py); |
|
|
@ -28187,7 +28192,8 @@ BI.extend(BI.DOM, { |
|
|
|
param: param |
|
|
|
param: param |
|
|
|
}; |
|
|
|
}; |
|
|
|
} |
|
|
|
} |
|
|
|
});(function () { |
|
|
|
}); |
|
|
|
|
|
|
|
(function () { |
|
|
|
var constantInjection = {}; |
|
|
|
var constantInjection = {}; |
|
|
|
BI.constant = function (xtype, cls) { |
|
|
|
BI.constant = function (xtype, cls) { |
|
|
|
if (constantInjection[xtype] != null) { |
|
|
|
if (constantInjection[xtype] != null) { |
|
|
|