@ -21,6 +21,7 @@ BI.ColorChooser = BI.inherit(BI.Widget, {
this.combo = BI.createWidget({
type: "bi.combo",
element: this,
container: o.container,
adjustLength: 1,
isNeedAdjustWidth: false,
isNeedAdjustHeight: false,
@ -21,6 +21,7 @@ BI.SimpleColorChooser = BI.inherit(BI.Widget, {
type: "bi.color_chooser",
value: o.value,
popup: {
type: "bi.simple_color_chooser_popup"
@ -36,6 +36,7 @@ BI.BubbleCombo = BI.inherit(BI.Widget, {
trigger: o.trigger,
toggle: o.toggle,
direction: o.direction,
isDefaultInit: o.isDefaultInit,
destroyWhenHide: o.destroyWhenHide,
@ -44,6 +44,7 @@ BI.IconTextValueCombo = BI.inherit(BI.Widget, {
this.textIconCombo = BI.createWidget({
adjustLength: 2,
el: this.trigger,
@ -19,6 +19,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
items: [{
el: {
toggle: false,
ref: function () {
@ -45,6 +45,7 @@ BI.StaticCombo = BI.inherit(BI.Widget, {
el: this.popup
@ -68,7 +68,7 @@
var self = this;
var found = false;
do {
if (t.nodeName !== "svg" && t.className && t.className.indexOf(prefix) != -1) {
if (t.nodeName !== "svg" && t.className && t.className.indexOf && t.className.indexOf(prefix) != -1) {
return;
// return false;
}
@ -119,6 +119,7 @@ BI.MultiSelectCombo = BI.inherit(BI.Single, {
@ -114,6 +114,7 @@ BI.MultiSelectInsertCombo = BI.inherit(BI.Single, {
type: "bi.multi_select_popup_view",
@ -121,6 +121,7 @@ BI.MultiSelectInsertNoBarCombo = BI.inherit(BI.Single, {
@ -124,6 +124,7 @@ BI.SearchMultiTextValueCombo = BI.inherit(BI.Single, {