|
|
@ -14508,14 +14508,6 @@ BI.Widget = BI.inherit(BI.OB, { |
|
|
|
this._initElementHeight(); |
|
|
|
this._initElementHeight(); |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
setElement: function (widget) { |
|
|
|
|
|
|
|
if (widget == this) { |
|
|
|
|
|
|
|
return; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
this.element = BI.isWidget(widget) ? widget.element : $(widget); |
|
|
|
|
|
|
|
return this; |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setEnable: function (enable) { |
|
|
|
setEnable: function (enable) { |
|
|
|
if (enable === true) { |
|
|
|
if (enable === true) { |
|
|
|
this.options.disabled = false; |
|
|
|
this.options.disabled = false; |
|
|
@ -14597,8 +14589,17 @@ BI.Widget = BI.inherit(BI.OB, { |
|
|
|
return widget; |
|
|
|
return widget; |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
removeWidget: function (name) { |
|
|
|
removeWidget: function (nameOrWidget) { |
|
|
|
delete this._children[name]; |
|
|
|
var self = this; |
|
|
|
|
|
|
|
if (BI.isWidget(nameOrWidget)) { |
|
|
|
|
|
|
|
BI.each(this._children, function (name, widget) { |
|
|
|
|
|
|
|
if (widget === nameOrWidget) { |
|
|
|
|
|
|
|
delete self._children[name]; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
delete this._children[nameOrWidget]; |
|
|
|
|
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
hasWidget: function (name) { |
|
|
|
hasWidget: function (name) { |
|
|
@ -14672,6 +14673,13 @@ BI.Widget = BI.inherit(BI.OB, { |
|
|
|
this.setVisible(true); |
|
|
|
this.setVisible(true); |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
isolate: function () { |
|
|
|
|
|
|
|
if (this._parent) { |
|
|
|
|
|
|
|
this._parent.removeWidget(this); |
|
|
|
|
|
|
|
BI.DOM.hang([this]); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
empty: function () { |
|
|
|
empty: function () { |
|
|
|
BI.each(this._children, function (i, widget) { |
|
|
|
BI.each(this._children, function (i, widget) { |
|
|
|
widget._unMount(); |
|
|
|
widget._unMount(); |
|
|
@ -15304,7 +15312,6 @@ BI.View = BI.inherit(BI.V, { |
|
|
|
options.isLayer && (vessel = BI.Layers.has(id) ? BI.Layers.get(id) : BI.Layers.create(id, vessel)); |
|
|
|
options.isLayer && (vessel = BI.Layers.has(id) ? BI.Layers.get(id) : BI.Layers.create(id, vessel)); |
|
|
|
if (this._cardLayouts[key]) { |
|
|
|
if (this._cardLayouts[key]) { |
|
|
|
options.defaultShowName && this._cardLayouts[key].setDefaultShowName(options.defaultShowName); |
|
|
|
options.defaultShowName && this._cardLayouts[key].setDefaultShowName(options.defaultShowName); |
|
|
|
this._cardLayouts[key].setElement(vessel) && this._cardLayouts[key].resize(); |
|
|
|
|
|
|
|
return this; |
|
|
|
return this; |
|
|
|
} |
|
|
|
} |
|
|
|
this._cardLayouts[key] = BI.createWidget({ |
|
|
|
this._cardLayouts[key] = BI.createWidget({ |
|
|
@ -15662,6 +15669,7 @@ BI.View = BI.inherit(BI.V, { |
|
|
|
delete this._cardLayouts; |
|
|
|
delete this._cardLayouts; |
|
|
|
delete this._cards; |
|
|
|
delete this._cards; |
|
|
|
this.remove(); |
|
|
|
this.remove(); |
|
|
|
|
|
|
|
this.trigger(BI.Events.DESTROY); |
|
|
|
this.destroyed(); |
|
|
|
this.destroyed(); |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
@ -19353,7 +19361,6 @@ BI.Layout = BI.inherit(BI.Widget, { |
|
|
|
var self = this, w; |
|
|
|
var self = this, w; |
|
|
|
if (!this.hasWidget(this._getChildName(i))) { |
|
|
|
if (!this.hasWidget(this._getChildName(i))) { |
|
|
|
w = BI.createWidget(item); |
|
|
|
w = BI.createWidget(item); |
|
|
|
this.addWidget(this._getChildName(i), w); |
|
|
|
|
|
|
|
w.on(BI.Events.DESTROY, function () { |
|
|
|
w.on(BI.Events.DESTROY, function () { |
|
|
|
BI.each(self._children, function (name, child) { |
|
|
|
BI.each(self._children, function (name, child) { |
|
|
|
if (child === w) { |
|
|
|
if (child === w) { |
|
|
@ -19361,6 +19368,7 @@ BI.Layout = BI.inherit(BI.Widget, { |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
this.addWidget(this._getChildName(i), w); |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
w = this.getWidgetByName(this._getChildName(i)); |
|
|
|
w = this.getWidgetByName(this._getChildName(i)); |
|
|
|
} |
|
|
|
} |
|
|
@ -19631,6 +19639,23 @@ BI.Layout = BI.inherit(BI.Widget, { |
|
|
|
}); |
|
|
|
}); |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
removeWidget: function (nameOrWidget) { |
|
|
|
|
|
|
|
var removeIndex; |
|
|
|
|
|
|
|
if (BI.isWidget(nameOrWidget)) { |
|
|
|
|
|
|
|
BI.each(this._children, function (name, child) { |
|
|
|
|
|
|
|
if (child === nameOrWidget) { |
|
|
|
|
|
|
|
removeIndex = name; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
removeIndex = nameOrWidget; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if (removeIndex) { |
|
|
|
|
|
|
|
this.options.items.splice(removeIndex, 1); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
BI.Layout.superclass.removeWidget.apply(this, arguments); |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
empty: function () { |
|
|
|
empty: function () { |
|
|
|
BI.Layout.superclass.empty.apply(this, arguments); |
|
|
|
BI.Layout.superclass.empty.apply(this, arguments); |
|
|
|
this.options.items = []; |
|
|
|
this.options.items = []; |
|
|
@ -19690,93 +19715,6 @@ BI.ActionFactory = { |
|
|
|
return new action(options); |
|
|
|
return new action(options); |
|
|
|
} |
|
|
|
} |
|
|
|
}/** |
|
|
|
}/** |
|
|
|
* guy |
|
|
|
|
|
|
|
* 由一个元素切换到另一个元素的行为 |
|
|
|
|
|
|
|
* @class BI.EffectShowAction |
|
|
|
|
|
|
|
* @extends BI.Action |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
BI.EffectShowAction = BI.inherit(BI.Action, { |
|
|
|
|
|
|
|
_defaultConfig: function() { |
|
|
|
|
|
|
|
return BI.extend(BI.EffectShowAction.superclass._defaultConfig.apply(this, arguments), { |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_init : function() { |
|
|
|
|
|
|
|
BI.EffectShowAction.superclass._init.apply(this, arguments); |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_checkBrowser: function(){ |
|
|
|
|
|
|
|
return false; |
|
|
|
|
|
|
|
// return !(BI.isFireFox() && parseInt($.browser.version) < 10);
|
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
actionPerformed: function(src, tar, callback){ |
|
|
|
|
|
|
|
src = src || this.options.src ,tar = tar || this.options.tar || "body"; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(this._checkBrowser()) { |
|
|
|
|
|
|
|
var transferEl = BI.createWidget({ |
|
|
|
|
|
|
|
type: "bi.layout", |
|
|
|
|
|
|
|
cls: "bi-transfer-temp-el" |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
BI.createWidget({ |
|
|
|
|
|
|
|
type: "bi.absolute", |
|
|
|
|
|
|
|
element: "body", |
|
|
|
|
|
|
|
items: [transferEl] |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
transferEl.element.css({ |
|
|
|
|
|
|
|
width: tar.element.width(), |
|
|
|
|
|
|
|
height: tar.element.height(), |
|
|
|
|
|
|
|
top: tar.element.offset().top, |
|
|
|
|
|
|
|
left: tar.element.offset().left |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
src.element.effect("transfer", { |
|
|
|
|
|
|
|
to: transferEl.element, |
|
|
|
|
|
|
|
className: "ui-effects-transfer" |
|
|
|
|
|
|
|
}, 400, function () { |
|
|
|
|
|
|
|
transferEl.destroy(); |
|
|
|
|
|
|
|
tar && tar.element.show(0, callback); |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
tar && tar.element.show(0, callback); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
actionBack: function(tar, src, callback){ |
|
|
|
|
|
|
|
src = src || this.options.src || $("body"),tar = tar || this.options.tar; |
|
|
|
|
|
|
|
tar && tar.element.hide(); |
|
|
|
|
|
|
|
if(this._checkBrowser()) { |
|
|
|
|
|
|
|
var transferEl = BI.createWidget({ |
|
|
|
|
|
|
|
type: "bi.layout", |
|
|
|
|
|
|
|
cls: "bi-transfer-temp-el" |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
BI.createWidget({ |
|
|
|
|
|
|
|
type: "bi.absolute", |
|
|
|
|
|
|
|
element: "body", |
|
|
|
|
|
|
|
items: [transferEl] |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
transferEl.element.css({ |
|
|
|
|
|
|
|
width: src.element.width(), |
|
|
|
|
|
|
|
height: src.element.height(), |
|
|
|
|
|
|
|
top: src.element.offset().top, |
|
|
|
|
|
|
|
left: src.element.offset().left |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
tar.element.effect("transfer", { |
|
|
|
|
|
|
|
to: transferEl.element, |
|
|
|
|
|
|
|
className: "ui-effects-transfer" |
|
|
|
|
|
|
|
}, 400, function () { |
|
|
|
|
|
|
|
transferEl.destroy(); |
|
|
|
|
|
|
|
callback && callback(); |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
callback && callback(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
});/** |
|
|
|
|
|
|
|
* guy |
|
|
|
* guy |
|
|
|
* 由一个元素切换到另一个元素的行为 |
|
|
|
* 由一个元素切换到另一个元素的行为 |
|
|
|
* @class BI.ShowAction |
|
|
|
* @class BI.ShowAction |
|
|
@ -19784,8 +19722,7 @@ BI.EffectShowAction = BI.inherit(BI.Action, { |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
BI.ShowAction = BI.inherit(BI.Action, { |
|
|
|
BI.ShowAction = BI.inherit(BI.Action, { |
|
|
|
_defaultConfig: function () { |
|
|
|
_defaultConfig: function () { |
|
|
|
return BI.extend(BI.ShowAction.superclass._defaultConfig.apply(this, arguments), { |
|
|
|
return BI.extend(BI.ShowAction.superclass._defaultConfig.apply(this, arguments), {}); |
|
|
|
}); |
|
|
|
|
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
_init: function () { |
|
|
|
_init: function () { |
|
|
@ -19794,43 +19731,14 @@ BI.ShowAction = BI.inherit(BI.Action, { |
|
|
|
|
|
|
|
|
|
|
|
actionPerformed: function (src, tar, callback) { |
|
|
|
actionPerformed: function (src, tar, callback) { |
|
|
|
tar = tar || this.options.tar; |
|
|
|
tar = tar || this.options.tar; |
|
|
|
tar && tar.element.show(0, callback); |
|
|
|
tar.setVisible(true); |
|
|
|
}, |
|
|
|
callback && callback(); |
|
|
|
|
|
|
|
|
|
|
|
actionBack: function(tar, src, callback){ |
|
|
|
|
|
|
|
tar = tar || this.options.tar; |
|
|
|
|
|
|
|
tar.element.hide(0, callback); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
});/** |
|
|
|
|
|
|
|
* guy |
|
|
|
|
|
|
|
* 由一个元素切换到另一个元素的行为 |
|
|
|
|
|
|
|
* @class BI.ScaleShowAction |
|
|
|
|
|
|
|
* @extends BI.Action |
|
|
|
|
|
|
|
* @abstract |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
BI.ScaleShowAction = BI.inherit(BI.Action, { |
|
|
|
|
|
|
|
_defaultConfig: function() { |
|
|
|
|
|
|
|
return BI.extend(BI.ScaleShowAction.superclass._defaultConfig.apply(this, arguments), { |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_init : function() { |
|
|
|
|
|
|
|
BI.ScaleShowAction.superclass._init.apply(this, arguments); |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_checkBrowser: function(){ |
|
|
|
|
|
|
|
return false; |
|
|
|
|
|
|
|
// return !(BI.isFireFox() && parseInt($.browser.version) < 10);
|
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
actionPerformed: function(src, tar, callback){ |
|
|
|
|
|
|
|
tar = tar || this.options.tar; |
|
|
|
|
|
|
|
this._checkBrowser() ? tar.element.show("scale", {percent:110}, 200, callback) : tar.element.show(0,callback); |
|
|
|
|
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
actionBack: function (tar, src, callback) { |
|
|
|
actionBack: function (tar, src, callback) { |
|
|
|
tar = tar || this.options.tar; |
|
|
|
tar = tar || this.options.tar; |
|
|
|
this._checkBrowser() ? tar.element.hide("scale", {percent:0}, 200, callback) : tar.element.hide(0,callback); |
|
|
|
tar.setVisible(false); |
|
|
|
|
|
|
|
callback && callback(); |
|
|
|
} |
|
|
|
} |
|
|
|
});/** |
|
|
|
});/** |
|
|
|
* @class BI.FloatSection |
|
|
|
* @class BI.FloatSection |
|
|
@ -26804,27 +26712,28 @@ BI.CardLayout = BI.inherit(BI.Layout, { |
|
|
|
this.populate(this.options.items); |
|
|
|
this.populate(this.options.items); |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
_getCardName: function (cardName) { |
|
|
|
|
|
|
|
return this.getName() + cardName; |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
resize: function () { |
|
|
|
resize: function () { |
|
|
|
// console.log("default布局不需要resize");
|
|
|
|
// console.log("default布局不需要resize");
|
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
stroke: function (items) { |
|
|
|
stroke: function (items) { |
|
|
|
var self = this; |
|
|
|
var self = this, o = this.options; |
|
|
|
this.showIndex = void 0; |
|
|
|
this.showIndex = void 0; |
|
|
|
BI.each(items, function (i, item) { |
|
|
|
BI.each(items, function (i, item) { |
|
|
|
if (!!item) { |
|
|
|
if (!!item) { |
|
|
|
if (!self.hasWidget(self._getCardName(item.cardName))) { |
|
|
|
if (!self.hasWidget(item.cardName)) { |
|
|
|
var w = BI.createWidget(item); |
|
|
|
var w = BI.createWidget(item); |
|
|
|
self.addWidget(self._getCardName(item.cardName), w); |
|
|
|
|
|
|
|
w.on(BI.Events.DESTROY, function () { |
|
|
|
w.on(BI.Events.DESTROY, function () { |
|
|
|
delete self._children[self._getCardName(item.cardName)]; |
|
|
|
var index = BI.findKey(o.items, function (i, tItem) { |
|
|
|
|
|
|
|
return tItem.cardName == item.cardName; |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
if (index > -1) { |
|
|
|
|
|
|
|
o.items.splice(index, 1); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
self.addWidget(item.cardName, w); |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
var w = self.getWidgetByName(self._getCardName(item.cardName)); |
|
|
|
var w = self.getWidgetByName(item.cardName); |
|
|
|
} |
|
|
|
} |
|
|
|
w.element.css({"position": "absolute", "top": "0", "right": "0", "bottom": "0", "left": "0"}); |
|
|
|
w.element.css({"position": "absolute", "top": "0", "right": "0", "bottom": "0", "left": "0"}); |
|
|
|
w.setVisible(false); |
|
|
|
w.setVisible(false); |
|
|
@ -26835,6 +26744,11 @@ BI.CardLayout = BI.inherit(BI.Layout, { |
|
|
|
update: function () { |
|
|
|
update: function () { |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
empty: function () { |
|
|
|
|
|
|
|
BI.CardLayout.superclass.empty.apply(this, arguments); |
|
|
|
|
|
|
|
this.options.items = []; |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
populate: function (items) { |
|
|
|
populate: function (items) { |
|
|
|
BI.CardLayout.superclass.populate.apply(this, arguments); |
|
|
|
BI.CardLayout.superclass.populate.apply(this, arguments); |
|
|
|
this._mount(); |
|
|
|
this._mount(); |
|
|
@ -26842,53 +26756,62 @@ BI.CardLayout = BI.inherit(BI.Layout, { |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
isCardExisted: function (cardName) { |
|
|
|
isCardExisted: function (cardName) { |
|
|
|
return this.hasWidget(this._getCardName(cardName)); |
|
|
|
return BI.some(this.options.items, function (i, item) { |
|
|
|
|
|
|
|
return item.cardName === cardName && item.el; |
|
|
|
|
|
|
|
}); |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
getCardByName: function (cardName) { |
|
|
|
getCardByName: function (cardName) { |
|
|
|
if (!this.hasWidget(this._getCardName(cardName))) { |
|
|
|
if (!this.isCardExisted(cardName)) { |
|
|
|
throw new Error("cardName is not exist"); |
|
|
|
throw new Error("cardName is not exist"); |
|
|
|
} |
|
|
|
} |
|
|
|
return this._children[this._getCardName(cardName)]; |
|
|
|
return this._children[cardName]; |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
deleteCardByName: function (cardName) { |
|
|
|
deleteCardByName: function (cardName) { |
|
|
|
if (!this.hasWidget(this._getCardName(cardName))) { |
|
|
|
if (!this.isCardExisted(cardName)) { |
|
|
|
return; |
|
|
|
throw new Error("cardName is not exist"); |
|
|
|
} |
|
|
|
} |
|
|
|
var index = BI.findKey(this.options.items, function (i, item) { |
|
|
|
var index = BI.findKey(this.options.items, function (i, item) { |
|
|
|
return item.cardName == cardName; |
|
|
|
return item.cardName == cardName; |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
if (index > -1) { |
|
|
|
this.options.items.splice(index, 1); |
|
|
|
this.options.items.splice(index, 1); |
|
|
|
var child = this.getWidgetByName(this._getCardName(cardName)); |
|
|
|
} |
|
|
|
delete this._children[this._getCardName(cardName)]; |
|
|
|
var child = this._children[cardName]; |
|
|
|
child.destroy(); |
|
|
|
child && child.destroy(); |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
addCardByName: function (cardName, cardItem) { |
|
|
|
addCardByName: function (cardName, cardItem) { |
|
|
|
if (this.hasWidget(this._getCardName(cardName))) { |
|
|
|
if (this.isCardExisted(cardName)) { |
|
|
|
throw new Error("cardName is already exist"); |
|
|
|
throw new Error("cardName is already exist"); |
|
|
|
} |
|
|
|
} |
|
|
|
this.options.items.push({el: cardItem, cardName: cardName}); |
|
|
|
|
|
|
|
var widget = BI.createWidget(cardItem); |
|
|
|
var widget = BI.createWidget(cardItem); |
|
|
|
widget.element.css({"position": "relative", "top": "0", "left": "0", "width": "100%", "height": "100%"}) |
|
|
|
widget.element.css({ |
|
|
|
.appendTo(this.element); |
|
|
|
"position": "relative", |
|
|
|
|
|
|
|
"top": "0", |
|
|
|
|
|
|
|
"left": "0", |
|
|
|
|
|
|
|
"width": "100%", |
|
|
|
|
|
|
|
"height": "100%" |
|
|
|
|
|
|
|
}).appendTo(this.element); |
|
|
|
widget.invisible(); |
|
|
|
widget.invisible(); |
|
|
|
this.addWidget(this._getCardName(cardName), widget); |
|
|
|
this.addWidget(cardName, widget); |
|
|
|
|
|
|
|
this.options.items.push({el: cardItem, cardName: cardName}); |
|
|
|
return widget; |
|
|
|
return widget; |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
showCardByName: function (name, action, callback) { |
|
|
|
showCardByName: function (name, action, callback) { |
|
|
|
var self = this; |
|
|
|
var self = this; |
|
|
|
//name不存在的时候全部隐藏
|
|
|
|
//name不存在的时候全部隐藏
|
|
|
|
var exist = this.hasWidget(this._getCardName(name)); |
|
|
|
var exist = this.isCardExisted(name); |
|
|
|
if (this.showIndex != null) { |
|
|
|
if (this.showIndex != null) { |
|
|
|
this.lastShowIndex = this.showIndex; |
|
|
|
this.lastShowIndex = this.showIndex; |
|
|
|
} |
|
|
|
} |
|
|
|
this.showIndex = this._getCardName(name); |
|
|
|
this.showIndex = name; |
|
|
|
var flag = false; |
|
|
|
var flag = false; |
|
|
|
BI.each(this._children, function (i, el) { |
|
|
|
BI.each(this.options.items, function (i, item) { |
|
|
|
if (self._getCardName(name) != i) { |
|
|
|
var el = self._children[item.cardName]; |
|
|
|
|
|
|
|
if (name != item.cardName) { |
|
|
|
//动画效果只有在全部都隐藏的时候才有意义,且只要执行一次动画操作就够了
|
|
|
|
//动画效果只有在全部都隐藏的时候才有意义,且只要执行一次动画操作就够了
|
|
|
|
!flag && !exist && (BI.Action && action instanceof BI.Action) ? (action.actionBack(el), flag = true) : el.invisible(); |
|
|
|
!flag && !exist && (BI.Action && action instanceof BI.Action) ? (action.actionBack(el), flag = true) : el.invisible(); |
|
|
|
} else { |
|
|
|
} else { |
|
|
@ -26900,8 +26823,8 @@ BI.CardLayout = BI.inherit(BI.Layout, { |
|
|
|
showLastCard: function () { |
|
|
|
showLastCard: function () { |
|
|
|
var self = this; |
|
|
|
var self = this; |
|
|
|
this.showIndex = this.lastShowIndex; |
|
|
|
this.showIndex = this.lastShowIndex; |
|
|
|
BI.each(this._children, function (i, el) { |
|
|
|
BI.each(this.options.items, function (i, item) { |
|
|
|
el.setVisible(self.showIndex == i); |
|
|
|
self._children[item.cardName].setVisible(self.showIndex == i); |
|
|
|
}) |
|
|
|
}) |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
@ -26935,15 +26858,17 @@ BI.CardLayout = BI.inherit(BI.Layout, { |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
hideAllCard: function () { |
|
|
|
hideAllCard: function () { |
|
|
|
BI.each(this._children, function (i, el) { |
|
|
|
var self = this; |
|
|
|
el.invisible(); |
|
|
|
BI.each(this.options.items, function (i, item) { |
|
|
|
|
|
|
|
self._children[item.cardName].invisible(); |
|
|
|
}); |
|
|
|
}); |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
isAllCardHide: function () { |
|
|
|
isAllCardHide: function () { |
|
|
|
|
|
|
|
var self = this; |
|
|
|
var flag = true; |
|
|
|
var flag = true; |
|
|
|
BI.some(this._children, function (i, el) { |
|
|
|
BI.some(this.options.items, function (i, item) { |
|
|
|
if (el.isVisible()) { |
|
|
|
if (self._children[item.cardName].isVisible()) { |
|
|
|
flag = false; |
|
|
|
flag = false; |
|
|
|
return false; |
|
|
|
return false; |
|
|
|
} |
|
|
|
} |
|
|
|