1
有沒有辦法在VirtualSelectBox按鈕上設置MaxWidth,但不是它的關聯列表?Qooxdoo在SelectBox上設置maxWidth與VirtualSelectBox的差異
的選擇框似乎檢點: http://tinyurl.com/c5nhxb6
而VirtualSelectBox不會: http://tinyurl.com/bu2w3k8
謝謝!
有沒有辦法在VirtualSelectBox按鈕上設置MaxWidth,但不是它的關聯列表?Qooxdoo在SelectBox上設置maxWidth與VirtualSelectBox的差異
的選擇框似乎檢點: http://tinyurl.com/c5nhxb6
而VirtualSelectBox不會: http://tinyurl.com/bu2w3k8
謝謝!
我發現的唯一方法是從下拉覆蓋自動調整。這不是一個優雅的方式,但你可以通過設置寬度的下拉出現時做到這一點:
var dropDown = selectBox.getChildControl("dropdown");
dropDown.addListener("appear", function() {
this.setWidth(200);
});
我建議打開一個增強的錯誤報告,以解決此功能的未來。
乾杯, 克里斯
感謝克里斯,這工作就像一個魅力!我也會打開一張票。 – Jonathan 2012-04-12 11:46:02