|
|
|
@ -5792,7 +5792,7 @@ BI.shortcut("bi.down_list_item", BI.DownListItem);BI.DownListGroupItem = BI.inhe
|
|
|
|
|
logic: { |
|
|
|
|
dynamic: false |
|
|
|
|
}, |
|
|
|
|
invalid: true, |
|
|
|
|
// invalid: true,
|
|
|
|
|
iconCls1: "dot-e-font", |
|
|
|
|
iconCls2: "pull-right-e-font" |
|
|
|
|
}) |
|
|
|
@ -5808,26 +5808,26 @@ BI.shortcut("bi.down_list_item", BI.DownListItem);BI.DownListGroupItem = BI.inhe
|
|
|
|
|
text: o.text, |
|
|
|
|
value: o.value, |
|
|
|
|
height: o.height |
|
|
|
|
}) |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
this.icon1 = BI.createWidget({ |
|
|
|
|
type: "bi.icon_button", |
|
|
|
|
cls: o.iconCls1, |
|
|
|
|
width: 25, |
|
|
|
|
forceNotSelected: true |
|
|
|
|
}) |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
this.icon2 = BI.createWidget({ |
|
|
|
|
type: "bi.icon_button", |
|
|
|
|
cls: o.iconCls2, |
|
|
|
|
width: 25, |
|
|
|
|
forceNotSelected: true |
|
|
|
|
}) |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
var blank = BI.createWidget({ |
|
|
|
|
type: "bi.layout", |
|
|
|
|
width: 25 |
|
|
|
|
}) |
|
|
|
|
}); |
|
|
|
|
BI.createWidget({ |
|
|
|
|
type: "bi.absolute", |
|
|
|
|
element: this, |
|
|
|
@ -5837,7 +5837,7 @@ BI.shortcut("bi.down_list_item", BI.DownListItem);BI.DownListGroupItem = BI.inhe
|
|
|
|
|
bottom: 0, |
|
|
|
|
right: 0 |
|
|
|
|
}] |
|
|
|
|
}) |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
BI.createWidget(BI.extend({ |
|
|
|
|
element: this |
|
|
|
@ -5845,19 +5845,11 @@ BI.shortcut("bi.down_list_item", BI.DownListItem);BI.DownListGroupItem = BI.inhe
|
|
|
|
|
items: BI.LogicFactory.createLogicItemsByDirection("left", this.icon1, this.text, blank) |
|
|
|
|
})))); |
|
|
|
|
|
|
|
|
|
this.element.on("mouseenter." + this.getName(), function (e) { |
|
|
|
|
if (self.element.__isMouseInBounds__(e) && self.isEnabled()) { |
|
|
|
|
this.element.hover(function () { |
|
|
|
|
if (self.isEnabled()) { |
|
|
|
|
self.hover(); |
|
|
|
|
} else { |
|
|
|
|
self.dishover(); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
this.element.on("mousemove." + this.getName(), function (e) { |
|
|
|
|
if (!self.element.__isMouseInBounds__(e) && self.isEnabled()) { |
|
|
|
|
self.dishover() |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
this.element.on("mouseleave." + this.getName(), function () { |
|
|
|
|
}, function () { |
|
|
|
|
if (self.isEnabled()) { |
|
|
|
|
self.dishover() |
|
|
|
|
} |
|
|
|
|