wicket根据情况自动添加多行

wicket中有ListView控件,根据情况显示多行

html:

<tr height="72" wicket:id="taskDetail">
     <td>升级包&nbsp;&nbsp;</td>
     <font color="red"><td wicket:id="newVersion"></td>&nbsp;&nbsp;</font>
     <td>投放版本&nbsp;&nbsp;</td>
     <font color="red"><td wicket:id="oldVersion"></td>&nbsp;&nbsp;</font>
     <td>会员类型&nbsp;&nbsp;</td>
     <td wicket:id="useType"><font color="red">&nbsp;&nbsp;</font></td>
     <td><input type="submit" wicket:id="startButton" value="开启"/></td>
     <td><input type="submit" wicket:id="stopButton"  value="暂停"/></td>
     <td><input type="submit" wicket:id="edit" value="修改"/></td>
     <tr height="72">
     <td>下发</td><td><font color="blue">999999</font></td><td>用户&nbsp;&nbsp;<br/></td>
     <td>下发成功</td><td><font color="blue">999</font></td><td>用户&nbsp;&nbsp;<br/></td>
     </tr>
   </tr> 

java:

RepeatingView listView = new RepeatingView("taskDetail");

for(Task task:taskList){
   final String a = task.getName();
   WebMarkupContainer item =new WebMarkupContainer(listView.newChildId());
   listView.add(item);
   item.add(new Label("newVersion",task.getName()));
   item.add(new Label("oldVersion",task.getName()));
   item.add(new Label("useType",task.getName()));
   item.add(new Button("startButton"){
    public void onSubmit(){
     System.out.println(a);
     info("hello ");
    }
   });
   item.add(new Button("stopButton"){
    public void onSubmit(){
     info(" world");
    }
   });
   item.add(new Button("edit"){
    public void onSubmit(){
     setResponsePage(UpdateSet.class);
    }
   });
  }
  form.add(listView);

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值