0

不幸的是,我还不能发布图片,但我会尽力解释。我有图像,我想像 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("");

    }-*/;
}
4

1 回答 1

0

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

(此帖子中提供的图像,同一问题的另一个化身http://www.sencha.com/forum/showthread.php?257343-ListView-Template

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

#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;
}

这些规则描述了当放置在具有id的容器中时如何使用thumbthumb-wrap 设置元素的样式。您在代码的其他地方设置了 id,但如果您想删除它,您可以简化这些规则。images-view

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

于 2013-02-27T23:33:01.177 回答