windy 7 years ago
parent
commit
588d64e7b0
  1. 2
      demo/js/widget/relationview/demo.relationview.js
  2. 5
      dist/bundle.js
  3. 2
      dist/demo.js
  4. 5
      dist/widget.js
  5. 3
      src/widget/relationview/relationview.region.container.js

2
demo/js/widget/relationview/demo.relationview.js

@ -51,7 +51,7 @@ Demo.RelationView = BI.inherit(BI.Widget, {
foreign: {region: "B", value: "b1", text: "b1字段"}
},
{
primary: {region: "X33", value: "x233", text: "x233字段"}
primary: {region: "X33"}
}
]
});

5
dist/bundle.js vendored

@ -79518,6 +79518,7 @@ BI.DownListCombo = BI.inherit(BI.Widget, {
direction: "bottom",
trigger: "click",
container: null,
stopPropagation: false,
el: {}
});
},
@ -79550,6 +79551,7 @@ BI.DownListCombo = BI.inherit(BI.Widget, {
container: o.container,
adjustLength: o.adjustLength,
direction: o.direction,
stopPropagation: o.stopPropagation,
el: BI.createWidget(o.el, {
type: "bi.icon_trigger",
extraCls: o.iconCls ? o.iconCls : "pull-down-font",
@ -91274,7 +91276,7 @@ BI.RelationViewRegionContainer = BI.inherit(BI.Widget, {
_defaultConfig: function () {
return BI.extend(BI.RelationViewRegionContainer.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-relation-view-region-container",
width: 150
width: 200
});
},
@ -91284,6 +91286,7 @@ BI.RelationViewRegionContainer = BI.inherit(BI.Widget, {
this.region = BI.createWidget({
type: "bi.relation_view_region",
value: o.value,
width: o.width,
header: o.header,
text: o.text,
handler: o.handler,

2
dist/demo.js vendored

@ -13112,7 +13112,7 @@ Demo.RelationView = BI.inherit(BI.Widget, {
foreign: {region: "B", value: "b1", text: "b1字段"}
},
{
primary: {region: "X33", value: "x233", text: "x233字段"}
primary: {region: "X33"}
}
]
});

5
dist/widget.js vendored

@ -3464,6 +3464,7 @@ BI.DownListCombo = BI.inherit(BI.Widget, {
direction: "bottom",
trigger: "click",
container: null,
stopPropagation: false,
el: {}
});
},
@ -3496,6 +3497,7 @@ BI.DownListCombo = BI.inherit(BI.Widget, {
container: o.container,
adjustLength: o.adjustLength,
direction: o.direction,
stopPropagation: o.stopPropagation,
el: BI.createWidget(o.el, {
type: "bi.icon_trigger",
extraCls: o.iconCls ? o.iconCls : "pull-down-font",
@ -15220,7 +15222,7 @@ BI.RelationViewRegionContainer = BI.inherit(BI.Widget, {
_defaultConfig: function () {
return BI.extend(BI.RelationViewRegionContainer.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-relation-view-region-container",
width: 150
width: 200
});
},
@ -15230,6 +15232,7 @@ BI.RelationViewRegionContainer = BI.inherit(BI.Widget, {
this.region = BI.createWidget({
type: "bi.relation_view_region",
value: o.value,
width: o.width,
header: o.header,
text: o.text,
handler: o.handler,

3
src/widget/relationview/relationview.region.container.js

@ -5,7 +5,7 @@ BI.RelationViewRegionContainer = BI.inherit(BI.Widget, {
_defaultConfig: function () {
return BI.extend(BI.RelationViewRegionContainer.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-relation-view-region-container",
width: 150
width: 200
});
},
@ -15,6 +15,7 @@ BI.RelationViewRegionContainer = BI.inherit(BI.Widget, {
this.region = BI.createWidget({
type: "bi.relation_view_region",
value: o.value,
width: o.width,
header: o.header,
text: o.text,
handler: o.handler,

Loading…
Cancel
Save