如何在wicket中嵌套动态表?

时间:2013-01-07 11:40:01

标签: java listview html-table wicket

我正在使用wicket来显示表格列表。表的数量和每个表中的行数都是动态的。

我试图保持简单,并为每个使用RepeatingView,然后嵌套它们,但是wicket说:

  

java.lang.IllegalArgumentException:id为'table'的孩子已经存在

这是我的Java:

   RepeatingView view = new RepeatingView("listoftables");

    for (CCSubscription sub: getCustomer().getSubscriptions())  {

        //resource balance table
        ResourceBalance[] resBals = sub.getResourceBalances();
        if(resBals!=null && resBals.length>0)   {
        ListView<ResourceBalance> resBalTable = new ListView<ResourceBalance>("table", Arrays.asList(resBals)) {

            @Override
            protected void populateItem(ListItem<ResourceBalance> item) {
                ResourceBalance bal = item.getModelObject();
                item.add(new Label("resource", bal.getResource().getName()));
                item.add(new Label("balance", bal.getBalance()));
            }
        };
        view.add(resBalTable);
        }   //end if sub has non-null resource balance

    }   //end loop through subscriptions

    add(view);

我的HTML是:

<ul>
<li wicket:id="listoftables">
<fieldset>
<legend><b>Resource Balances</b>
</legend>
    <table class="dataview" style="width:50%">
        <thead>
            <tr class="headers">
                <th>Resource</th>
                <th>Balance</th>

            </tr>
        </thead>
        <tr wicket:id="table">
            <td>
                <span wicket:id="resource"></span>
            </td>
            <td>
                <span wicket:id="balance"></span>
            </td>
        </tr>
    </table>
</fieldset>
<br/>

我承认我可能会以错误的方式解决这个问题,但我看不出应该采用什么方法。

希望有人可以提供帮助!?

3 个答案:

答案 0 :(得分:4)

好的,我得到了它的工作:

final ListView<CCSubscription> tables = new ListView<CCSubscription>(
            "tables", getCustomer().getSubscriptions()) {
        @Override
        protected void populateItem(ListItem<CCSubscription> item) {
            ListView<ResourceBalance> resBalTable = new ListView<ResourceBalance>("listview", Arrays.asList(item.getModel().getObject().getResourceBalances())) {

                @Override
                protected void populateItem(ListItem<ResourceBalance> item) {
                    ResourceBalance bal = item.getModelObject();
                    item.add(new Label("resource", bal.getResource().getName()));
                    item.add(new Label("balance", bal.getBalance()+""));
                }
            };
            item.add(resBalTable);
        }
    };

    add(tables);

html看起来如下:

<span wicket:id="tables">
<fieldset>
<legend><b>Resource Balances</b>
</legend>
    <table class="dataview" style="width:50%">
        <thead>
            <tr class="headers">
                <th>Resource</th>
                <th>Balance</th>

            </tr>
        </thead>
        <tr wicket:id="listview">
            <td>
                <span wicket:id="resource"></span>
            </td>
            <td>
                <span wicket:id="balance"></span>
            </td>


        </tr>
    </table>
</fieldset>
<br/>

答案 1 :(得分:2)

您无法将具有相同ID(ListView("table"))的两个组件添加到单个容器(RepeatingView)。

RepeatingView对象有一个为其子组件生成ID的方法。来自javadoc

RepeatingView view = new RepeatingView("repeater");
view.add(new Label(view.newChildId(), "hello"));
view.add(new Label(view.newChildId(), "goodbye"));
view.add(new Label(view.newChildId(), "good morning"));
add(view);

您还可以创建自己的逻辑来生成ID:

RepeatingView view = new RepeatingView("repeater");
for (int i=0; i < 10; i++)
    view.add(new MyListView("list" + i));
add(view);

答案 2 :(得分:0)

您在循环中多次添加同一个对象,这不是您想要实现的目标。命名组件只能添加一次到给定页面。

您需要将您的类定义为ListView的扩展,并传递要呈现给它的对象列表。看看https://cwiki.apache.org/WICKET/listview-and-other-repeaters.html