如何在DualListField中设置toCat

时间:2015-02-24 03:36:47

标签: java gxt

有人能帮助我吗? 我想在DualListField选择的项目所在的一侧显示旧的选定类别。 每当我单击类别的列时,DualListField的代码行将显示。

VerticalLayoutContainer vlc = new VerticalLayoutContainer();
        vlc.setWidth(350);
        add(vlc);

        ListStore<Category> fromCat = new ListStore<Category>(catProp.IDCategory());
        fromCat.addAll(list);
        toCat = new ListStore<Category>(catProp.IDCategory());
        field = new DualListField<Category, String>(fromCat, toCat, catProp.strName(), new TextCell());
        field.addValidator(new EmptyValidator<List<Category>>());
        field.setEnableDnd(true);
        field.setWidth(300);

但在此之前,类别中的网格已经有一个旧的选定项目,我希望它们在toCat中。怎么可能?

提前致谢

0 个答案:

没有答案