GXT - 具有多选功能的 ComoboBox [英] GXT - ComoboBox with Multi select feature

查看:16
本文介绍了GXT - 具有多选功能的 ComoboBox的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的任务是设计一个具有多选功能的大小组合框 (GXT) 控件.我尝试使用 ComboBox 的 setView 设置 CheckBoxListView 但似乎没有用.如果有任何使用 GXT 框架的方法可以实现这一点,有人可以指导我吗?

I have a task to design a control of size ComboBox (GXT) with Multi-select feature. I tried to set CheckBoxListView using setView of ComboBox but did not seemed to work. Can anybody please guide me if there is any way using the GXT framework I can achieve this?

PS:我在 sencha 论坛(java 类,源代码)中发现了一个名为 XComboBox 的组件,它运行良好,但不能在 GNU GPL 许可下用作其

PS: I found a component called XComboBox in sencha forum (java class, source code) which works good, but cant be used as its under GNU GPL License

提前致谢!

推荐答案

感谢@smiletolead 的指导,我通过将 Dialog 与 CheckBoxListView 和 TriggerField 类集成找到了解决方案.

Thanks @smiletolead for your guidance, I found a solution by integrating Dialog with CheckBoxListView and TriggerField class.

完整的代码清单是..



    package com.ui.test.client;

    import java.util.List;

    import com.extjs.gxt.ui.client.data.ModelData;
    import com.extjs.gxt.ui.client.event.ComponentEvent;
    import com.extjs.gxt.ui.client.event.WindowEvent;
    import com.extjs.gxt.ui.client.event.WindowListener;
    import com.extjs.gxt.ui.client.store.ListStore;
    import com.extjs.gxt.ui.client.widget.CheckBoxListView;
    import com.extjs.gxt.ui.client.widget.Dialog;
    import com.extjs.gxt.ui.client.widget.form.TriggerField;
    import com.extjs.gxt.ui.client.widget.layout.FillLayout;
    import com.google.gwt.user.client.Element;

    public class MultiSelectComboBox extends TriggerField {

        private Dialog checkBoxListHolder;
        private CheckBoxListView listView;
        private ListStore store;

        private String delimiter = ",";
        private boolean readOnly;


        public MultiSelectComboBox() {
            store = new ListStore();
            listView = new CheckBoxListView();
        }




        @Override
        protected void onTriggerClick(ComponentEvent ce) {
            super.onTriggerClick(ce);
            if(readOnly) {
                return;
            }
            checkBoxListHolder.setSize(getWidth(), 200);
            listView.setWidth(getWidth());
            checkBoxListHolder.setPosition(getAbsoluteLeft(), 
                    getAbsoluteTop() + getHeight());
            if(checkBoxListHolder.isVisible()) {
                checkBoxListHolder.hide();
            }
            else {
                checkBoxListHolder.show();
            }
        }




        @Override
        protected void onRender(Element target, int index) {
            super.onRender(target, index);

            checkBoxListHolder = new Dialog();
            checkBoxListHolder.setClosable(false);
            checkBoxListHolder.setHeaderVisible(false);
            checkBoxListHolder.setFooter(false);
            checkBoxListHolder.setFrame(false);
            checkBoxListHolder.setResizable(false);
            checkBoxListHolder.setAutoHide(false);
            checkBoxListHolder.getButtonBar().setVisible(false);
            checkBoxListHolder.setLayout(new FillLayout());
            checkBoxListHolder.add(listView);
            listView.setStore(store);

            checkBoxListHolder.addWindowListener(new WindowListener(){

                @Override
                public void windowHide(WindowEvent we) {
                    setValue(parseCheckedValues(listView));
                }

            });

        }




        private String parseCheckedValues(CheckBoxListView checkBoxView) {
            StringBuffer buf = new StringBuffer();
            if(checkBoxView != null) {
                List selected = checkBoxView.getChecked();
                int index = 1, len = selected.size();
                for(D c : selected) {
                    buf.append(c.get(listView.getDisplayProperty()));
                    if(index  getListView() {
            return listView;
        }

        public void setListView(CheckBoxListView listView) {
            this.listView = listView;
        }

        public ListStore getStore() {
            return store;
        }

        public void setStore(ListStore store) {
            this.store = store;
        }

        public String getDelimiter() {
            return delimiter;
        }

        public void setDelimiter(String delimiter) {
            this.delimiter = delimiter;
        }

        public boolean isReadOnly() {
            return readOnly;
        }

        public void setReadOnly(boolean readOnly) {
            this.readOnly = readOnly;
        }


    }

代码已经在这里解释了...http://bhat86.blogspot.com/2012/02/gxt-comobobox-with-multi-select-feature.html

The code has been explained here... http://bhat86.blogspot.com/2012/02/gxt-comobobox-with-multi-select-feature.html

谢谢!

这篇关于GXT - 具有多选功能的 ComoboBox的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆