Browse Source

Pull request #2239: BI-91705 fix: MultiLayerDownListPopup限制下高度,与DownListPopup保持一致

Merge in VISUAL/fineui from ~OLIVER.KE/fineui:master to master

* commit 'a7d5159d6f95bffe16a32748790dbe798f144ca6':
  BI-91705 fix: MultiLayerDownListPopup限制下高度,与DownListPopup保持一致
es6
Oliver.Ke 3 years ago
parent
commit
e9ca11beac
  1. 5
      src/widget/multilayerdownlist/popup.downlist.js

5
src/widget/multilayerdownlist/popup.downlist.js

@ -107,7 +107,8 @@ BI.MultiLayerDownListPopup = BI.inherit(BI.Pane, {
}] }]
}, },
innerVGap: 5 innerVGap: 5,
maxHeight: 378,
}; };
self._createChildren(item); self._createChildren(item);
} else { } else {
@ -319,4 +320,4 @@ BI.MultiLayerDownListPopup = BI.inherit(BI.Pane, {
BI.MultiLayerDownListPopup.EVENT_CHANGE = "EVENT_CHANGE"; BI.MultiLayerDownListPopup.EVENT_CHANGE = "EVENT_CHANGE";
BI.MultiLayerDownListPopup.EVENT_SON_VALUE_CHANGE = "EVENT_SON_VALUE_CHANGE"; BI.MultiLayerDownListPopup.EVENT_SON_VALUE_CHANGE = "EVENT_SON_VALUE_CHANGE";
BI.shortcut("bi.multi_layer_down_list_popup", BI.MultiLayerDownListPopup); BI.shortcut("bi.multi_layer_down_list_popup", BI.MultiLayerDownListPopup);

Loading…
Cancel
Save