导航

设置 combobox picker 选择器高度. ext.net

Posted on 2019-08-02 11:11  yiyishuitian  阅读(323)  评论(0编辑  收藏  举报
<ext:ComboBox ... MatchFieldWidth="false">
    <Listeners>
        <Expand Handler="var picker = this.getPicker(),
                            width = this.getWidth(),
                            pickerWidth = picker.getWidth();

                        if (pickerWidth > width) {
                            picker.setWidth(width);
                        }" />
    </Listeners>
</ext:ComboBox>