|
|
|
@ -29995,7 +29995,7 @@ BI.Navigation = BI.inherit(BI.Widget, {
|
|
|
|
|
dynamic: false |
|
|
|
|
}, |
|
|
|
|
single: false, |
|
|
|
|
defaultShowIndex: false, |
|
|
|
|
showIndex: false, |
|
|
|
|
tab: false, |
|
|
|
|
cardCreator: function (v) { |
|
|
|
|
return BI.createWidget(); |
|
|
|
@ -30039,8 +30039,8 @@ BI.Navigation = BI.inherit(BI.Widget, {
|
|
|
|
|
|
|
|
|
|
mounted: function () { |
|
|
|
|
var o = this.options; |
|
|
|
|
if (o.defaultShowIndex !== false) { |
|
|
|
|
this.setSelect(o.defaultShowIndex); |
|
|
|
|
if (o.showIndex !== false) { |
|
|
|
|
this.setSelect(o.showIndex); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
@ -30747,7 +30747,7 @@ BI.Tab = BI.inherit(BI.Widget, {
|
|
|
|
|
logic: { |
|
|
|
|
dynamic: false |
|
|
|
|
}, |
|
|
|
|
defaultShowIndex: false, |
|
|
|
|
showIndex: false, |
|
|
|
|
tab: false, |
|
|
|
|
cardCreator: function (v) { |
|
|
|
|
return BI.createWidget(); |
|
|
|
@ -30814,8 +30814,8 @@ BI.Tab = BI.inherit(BI.Widget, {
|
|
|
|
|
|
|
|
|
|
mounted: function () { |
|
|
|
|
var o = this.options; |
|
|
|
|
if (o.defaultShowIndex !== false) { |
|
|
|
|
this.setSelect(o.defaultShowIndex); |
|
|
|
|
if (o.showIndex !== false) { |
|
|
|
|
this.setSelect(o.showIndex); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
@ -96927,7 +96927,7 @@ BI.SwitchTree = BI.inherit(BI.Widget, {
|
|
|
|
|
type: "bi.tab", |
|
|
|
|
element: this, |
|
|
|
|
tab: null, |
|
|
|
|
defaultShowIndex: BI.SwitchTree.SelectType.SingleSelect, |
|
|
|
|
showIndex: BI.SwitchTree.SelectType.SingleSelect, |
|
|
|
|
cardCreator: BI.bind(this._createTree, this) |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|