ListView gwt如何组织图像

时间:2013-02-27 14:40:52

标签: java listview gwt extjs2

不幸的是我还不能发布图片,但我会尝试解释。我有图像,我想像Chrome浏览器或歌剧中的空白页面一样使用它们。但结果是我与图像对齐,下一行图像在下一行,所有行(不仅是图像)都是活动的。

那么,我该怎么做呢。我一直试图找到我的代码和ext gwt 2.2资源管理器网站上给出的示例代码之间的任何差异(重要差异)。这是我的代码:

public class QueryPanel extends LayoutContainer {


public QueryPanel(final String customerId, final String login, final String password){

    setLayout(new FitLayout());
    final ContentPanel gallery = new ContentPanel();
    gallery.setHeading("Reports");
    gallery.setLayout(new FitLayout());
    gallery.setCollapsible(true);
    gallery.setAnimCollapse(false);
    gallery.setFrame(true);
    gallery.setId("images-view");
    gallery.setWidth(535);

    ListStore<GalleryButtonModel> store = new ListStore<GalleryButtonModel>();
    store.add(new GalleryButtonModel("Copy all messages", "CopyIcon.png", new CopyMsgs(customerId)));
    store.add(new GalleryButtonModel("Spam report", "spam.gif", new SpamReport(customerId, login, password)));
    store.add(new GalleryButtonModel("Top customers report", "topCustomers.gif", new TopCustomersReport(customerId, login, password)));
    store.add(new GalleryButtonModel("Total report", "total-report.gif", new TotalReport(customerId, login, password)));
    store.add(new GalleryButtonModel("Message througput report", "message-troughput.gif", new MessageThroughputReport(customerId, login, password)));
    store.add(new GalleryButtonModel("Delivery time report", "delivery-time.gif", new DeliveryTimeReport(customerId, login, password)));
    store.add(new GalleryButtonModel("Action type report", "report.gif", new ActionTypeReport(customerId, login, password)));

    ListView<GalleryButtonModel> view = new ListView<GalleryButtonModel>() {
        @Override
        protected GalleryButtonModel prepareData(GalleryButtonModel model) {
            String s = model.get("name");
            model.set("shortName", Format.ellipse(s, 15));
            return model;
        }

    };

    view.setId("img-chooser-view");
    view.setTemplate(getTemplate(""));
    view.setStore(store);
    view.setItemSelector("div.thumb-wrap");
    view.getSelectionModel().select(0, false);
    view.getSelectionModel().addListener(Events.SelectionChange,
            new Listener<SelectionChangedEvent<GalleryButtonModel>>() {

                public void handleEvent(SelectionChangedEvent<GalleryButtonModel> be) {
                    be.getSelectedItem().getExample().getButtonModel();
                }

            });
    VBoxLayoutData vFlex = new VBoxLayoutData();
    vFlex.setFlex(1);
    gallery.add(view, new FitData(5,5,5,5));
    add(gallery, vFlex);     
}    

    private native String getTemplate(String base)/*-{
        return ['<tpl for=".">',
            '<div class="thumb-wrap" id="{name}">',
            '<div class="thumb"><img src="/gxt/images/default/button/{path}" title="{name}"></div>',
            '<span class="x-editable">{shortName}</span></div>',
            '</tpl>',
            '<div class="x-clear"></div>'].join("");

    }-*/;
}

1 个答案:

答案 0 :(得分:0)

听起来你可能正在谈论这个例子:http://www.sencha.com/examples-2/#listview

(此帖提供的图片,同一问题的另一个版本http://www.sencha.com/forum/showthread.php?257343-ListView-Template

在您使用的模板中,您引用了css类thumbthumb-wrap。这些不仅仅是添加到html结构中的字符串,它们在页面上的CSS中有意义。以下是根据适用于此的firebug选择的一些位:

#images-view .thumb-wrap {
    border: 1px solid white;
    float: left;
    margin: 4px 0 4px 4px;
    padding: 5px;
}


#images-view .thumb {
    background: none repeat scroll 0 0 #DDDDDD;
    padding: 3px;
}

这些规则描述了在将thumb id 放入容器内时如何使用thumb-wrapimages-view 设置样式的样式>。您在代码中的其他位置设置了ID,但如果要删除它,则可以简化这些规则。

float:left;样式具体是导致它们从左到右,然后从上到下排列的原因。当然,您需要使用其他样式,但如果这些规则不在页面上的CSS文件中,那么这些元素将不会被它们设置样式。