|
|
@ -90879,7 +90879,6 @@ BI.RelationViewItem = BI.inherit(BI.BasicButton, { |
|
|
|
_defaultConfig: function () { |
|
|
|
_defaultConfig: function () { |
|
|
|
return BI.extend(BI.RelationViewItem.superclass._defaultConfig.apply(this, arguments), { |
|
|
|
return BI.extend(BI.RelationViewItem.superclass._defaultConfig.apply(this, arguments), { |
|
|
|
baseCls: "bi-relation-view-item bi-list-item-active", |
|
|
|
baseCls: "bi-relation-view-item bi-list-item-active", |
|
|
|
height: 25, |
|
|
|
|
|
|
|
hoverIn: BI.emptyFn, |
|
|
|
hoverIn: BI.emptyFn, |
|
|
|
hoverOut: BI.emptyFn |
|
|
|
hoverOut: BI.emptyFn |
|
|
|
}); |
|
|
|
}); |
|
|
@ -90889,29 +90888,48 @@ BI.RelationViewItem = BI.inherit(BI.BasicButton, { |
|
|
|
BI.RelationViewItem.superclass._init.apply(this, arguments); |
|
|
|
BI.RelationViewItem.superclass._init.apply(this, arguments); |
|
|
|
var self = this, o = this.options; |
|
|
|
var self = this, o = this.options; |
|
|
|
this.element.hover(o.hoverIn, o.hoverOut); |
|
|
|
this.element.hover(o.hoverIn, o.hoverOut); |
|
|
|
var items = []; |
|
|
|
o.text = BI.isArray(o.text) ? o.text : [o.text]; |
|
|
|
|
|
|
|
var body = []; |
|
|
|
|
|
|
|
var header = { |
|
|
|
|
|
|
|
type: "bi.vertical_adapt", |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cls: "primary-key-font", |
|
|
|
|
|
|
|
items: [] |
|
|
|
|
|
|
|
}; |
|
|
|
if (o.isPrimary) { |
|
|
|
if (o.isPrimary) { |
|
|
|
items.push({ |
|
|
|
header.items.push({ |
|
|
|
type: "bi.icon", |
|
|
|
type: "bi.icon", |
|
|
|
width: 16, |
|
|
|
width: 16, |
|
|
|
height: 16, |
|
|
|
height: 16, |
|
|
|
title: BI.i18nText("BI-Primary_Key") |
|
|
|
title: BI.i18nText("BI-Primary_Key") |
|
|
|
}); |
|
|
|
}); |
|
|
|
} |
|
|
|
} |
|
|
|
items.push({ |
|
|
|
header.items.push({ |
|
|
|
type: "bi.label", |
|
|
|
type: "bi.label", |
|
|
|
text: o.text, |
|
|
|
text: o.text.length > 1 ? BI.i18nText("BI-Basic_Union_Relation") : o.text[0], |
|
|
|
value: o.value, |
|
|
|
value: o.value, |
|
|
|
height: o.height, |
|
|
|
height: 25, |
|
|
|
textAlign: "left", |
|
|
|
textAlign: "left", |
|
|
|
width: o.isPrimary ? 70 : 90, |
|
|
|
width: o.isPrimary ? 70 : 90, |
|
|
|
lgap: o.isPrimary ? 0 : 10 |
|
|
|
lgap: o.isPrimary ? 0 : 10 |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
if(o.text.length > 1){ |
|
|
|
|
|
|
|
body = BI.map(o.text, function (idx, text) { |
|
|
|
|
|
|
|
return { |
|
|
|
|
|
|
|
type: "bi.label", |
|
|
|
|
|
|
|
text: text, |
|
|
|
|
|
|
|
value: o.value, |
|
|
|
|
|
|
|
height: 25, |
|
|
|
|
|
|
|
textAlign: "left", |
|
|
|
|
|
|
|
width: 90, |
|
|
|
|
|
|
|
lgap: 20 |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
} |
|
|
|
BI.createWidget({ |
|
|
|
BI.createWidget({ |
|
|
|
type: "bi.vertical_adapt", |
|
|
|
type: "bi.vertical", |
|
|
|
element: this, |
|
|
|
element: this, |
|
|
|
items: items, |
|
|
|
items: BI.concat([header], body), |
|
|
|
cls: "primary-key-font", |
|
|
|
|
|
|
|
lgap: 5 |
|
|
|
lgap: 5 |
|
|
|
}); |
|
|
|
}); |
|
|
|
}, |
|
|
|
}, |
|
|
@ -91416,8 +91434,10 @@ BI.RelationViewRegion = BI.inherit(BI.BasicButton, { |
|
|
|
_createItems: function (items) { |
|
|
|
_createItems: function (items) { |
|
|
|
var self = this; |
|
|
|
var self = this; |
|
|
|
return BI.map(items, function (i, item) { |
|
|
|
return BI.map(items, function (i, item) { |
|
|
|
|
|
|
|
var texts = BI.isArray(item.text) ? item.text : [item.text]; |
|
|
|
return BI.extend(item, { |
|
|
|
return BI.extend(item, { |
|
|
|
type: "bi.relation_view_item", |
|
|
|
type: "bi.relation_view_item", |
|
|
|
|
|
|
|
height: texts.length > 1 ? (texts.length + 1) * 25 : 25, |
|
|
|
hoverIn: function () { |
|
|
|
hoverIn: function () { |
|
|
|
self.setValue(item.value); |
|
|
|
self.setValue(item.value); |
|
|
|
self.fireEvent(BI.RelationViewRegion.EVENT_HOVER_IN, item.value); |
|
|
|
self.fireEvent(BI.RelationViewRegion.EVENT_HOVER_IN, item.value); |
|
|
@ -91443,7 +91463,11 @@ BI.RelationViewRegion = BI.inherit(BI.BasicButton, { |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
getHeight: function () { |
|
|
|
getHeight: function () { |
|
|
|
return this.button_group.getAllButtons().length * 25 + 25 + 2 * 20 + 3; |
|
|
|
var height = 0; |
|
|
|
|
|
|
|
BI.each(this.button_group.getAllButtons(), function (idx, button) { |
|
|
|
|
|
|
|
height += button.getHeight(); |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
return height + 25 + 2 * 20 + 3; |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
// 获取上方开始划线的位置
|
|
|
|
// 获取上方开始划线的位置
|
|
|
|