Browse Source

REPORT-59272 fix: 修复查看已选面板国际化环境下放不下换行的问题

es6
iapyang 3 years ago
parent
commit
272e3198a4
  1. 7
      src/widget/multiselect/check/multiselect.check.pane.js
  2. 8
      src/widget/multitree/check/multi.tree.check.pane.js

7
src/widget/multiselect/check/multiselect.check.pane.js

@ -39,6 +39,7 @@ BI.MultiSelectCheckPane = BI.inherit(BI.Widget, {
callback({ callback({
items: BI.map(self.storeValue.value, function (i, v) { items: BI.map(self.storeValue.value, function (i, v) {
var txt = opts.valueFormatter(v) || v; var txt = opts.valueFormatter(v) || v;
return { return {
text: txt, text: txt,
value: v, value: v,
@ -46,6 +47,7 @@ BI.MultiSelectCheckPane = BI.inherit(BI.Widget, {
}; };
}) })
}); });
return; return;
} }
opts.itemsCreator(op, callback); opts.itemsCreator(op, callback);
@ -54,6 +56,7 @@ BI.MultiSelectCheckPane = BI.inherit(BI.Widget, {
this.continueSelect = BI.createWidget({ this.continueSelect = BI.createWidget({
type: "bi.text_button", type: "bi.text_button",
title: BI.i18nText("BI-Continue_Select"),
text: BI.i18nText("BI-Continue_Select"), text: BI.i18nText("BI-Continue_Select"),
cls: "multi-select-check-selected bi-high-light" cls: "multi-select-check-selected bi-high-light"
}); });
@ -69,18 +72,20 @@ BI.MultiSelectCheckPane = BI.inherit(BI.Widget, {
height: this.constants.height, height: this.constants.height,
el: { el: {
type: "bi.vertical_adapt", type: "bi.vertical_adapt",
columnSize: ['fill', 'auto'],
cls: "multi-select-continue-select", cls: "multi-select-continue-select",
items: [ items: [
{ {
el: { el: {
type: "bi.label", type: "bi.label",
title: BI.i18nText("BI-Selected_Data"),
text: BI.i18nText("BI-Selected_Data") text: BI.i18nText("BI-Selected_Data")
}, },
lgap: this.constants.lgap lgap: this.constants.lgap
}, },
{ {
el: this.continueSelect, el: this.continueSelect,
lgap: this.constants.lgap hgap: this.constants.lgap
}] }]
}, },
tgap: this.constants.tgap tgap: this.constants.tgap

8
src/widget/multitree/check/multi.tree.check.pane.js

@ -30,6 +30,7 @@ BI.MultiTreeCheckPane = BI.inherit(BI.Pane, {
var continueSelect = BI.createWidget({ var continueSelect = BI.createWidget({
type: "bi.text_button", type: "bi.text_button",
title: BI.i18nText("BI-Continue_Select"),
text: BI.i18nText("BI-Continue_Select"), text: BI.i18nText("BI-Continue_Select"),
cls: "multi-tree-check-selected" cls: "multi-tree-check-selected"
}); });
@ -41,12 +42,14 @@ BI.MultiTreeCheckPane = BI.inherit(BI.Pane, {
}); });
var backToPopup = BI.createWidget({ var backToPopup = BI.createWidget({
type: "bi.left", type: "bi.vertical_adapt",
columnSize: ['fill', 'auto'],
cls: "multi-tree-continue-select", cls: "multi-tree-continue-select",
items: [ items: [
{ {
el: { el: {
type: "bi.label", type: "bi.label",
title: BI.i18nText("BI-Selected_Data"),
text: BI.i18nText("BI-Selected_Data") text: BI.i18nText("BI-Selected_Data")
}, },
lgap: this.constants.lgap, lgap: this.constants.lgap,
@ -54,7 +57,7 @@ BI.MultiTreeCheckPane = BI.inherit(BI.Pane, {
}, },
{ {
el: continueSelect, el: continueSelect,
lgap: this.constants.lgap, hgap: this.constants.lgap,
tgap: this.constants.tgap tgap: this.constants.tgap
}] }]
}); });
@ -92,7 +95,6 @@ BI.MultiTreeCheckPane = BI.inherit(BI.Pane, {
el: this.display el: this.display
}] }]
}); });
}, },
empty: function () { empty: function () {

Loading…
Cancel
Save