博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
use CheckBoxMultipleChoice in wicket
阅读量:6490 次
发布时间:2019-06-24

本文共 900 字,大约阅读时间需要 3 分钟。

1         final CheckBoxMultipleChoice
resultlistChoice = new CheckBoxMultipleChoice
("resultlist", new PropertyModel
>(this, "valueList"), new PropertyModel
>(this, "list")); 2 3 resultlistChoice.add(new AjaxFormComponentUpdatingBehavior("onclick") { 4 5 @Override 6 protected void onUpdate(AjaxRequestTarget target) { 7 // TODO Auto-generated method stub 8 } 9 });10 11 resultlistChoice.add(new AjaxFormChoiceComponentUpdatingBehavior() {12 13 @Override14 protected void onUpdate(AjaxRequestTarget target) {15 // TODO Auto-generated method stub16 selectedList.clear();17 for (String item : resultlistChoice.getModelObject()) {18 selectedList.add(item);19 System.out.println(item);20 }21 target.add(selectedChoice);22 }23 });

转载于:https://www.cnblogs.com/MyFavorite/archive/2012/06/18/2553025.html

你可能感兴趣的文章
ORACLE SQL调优之记录一次trim函数引发的大表全表扫描
查看>>
JS编程建议——20:不要使用new
查看>>
Oracle hint之DRIVING_SITE
查看>>
深入理解计算机系统结构——链接
查看>>
阿里云盾提醒网站被WebShell木马后门分析与对策
查看>>
Java开发者福利——Java编码规范Eclipse/IDEA插件
查看>>
not accessible due to restriction on required library
查看>>
Python计算&绘图——曲线拟合问题(转)
查看>>
数学计算不精确的芯片能帮助解决难题
查看>>
selenium-webdriver(python) (十四) -- webdriver原理
查看>>
《树莓派Python编程入门与实战》——1.3 哪些树莓派外设是必须的
查看>>
《编译与反编译技术实战 》一3.2 词法分析器的手工实现
查看>>
《计算机存储与外设》----1.5 虚拟存储器和存储器管理
查看>>
《 Python树莓派编程》——3.4 利用Python进行编程
查看>>
从损坏的 Linux EFI 安装中恢复
查看>>
Git Rebase教程: 用Git Rebase让时光倒流
查看>>
柏林纪行(上):整体感受
查看>>
《Python数据分析》一1.7 学习手册页
查看>>
Centos7 下建立 Docker 桥接网络
查看>>
《Hack与HHVM权威指南》——1.6 类型推理
查看>>