zTree数据复选框回显怎么弄?
@zTree 你好,想跟你请教个问题:
<sys:treeselect
id="aaa" name="dictLists" value="" labelName="dict.value" labelValue="${dict.value}"
title="类型" url="/hb02/hbGprotreeInfo/treeData" extId="${dict.value}" cssClass="input-xxlarge required" checked="true" allowClear="true"/>
checked= true 设置复选框功能开启
@RequiresPermissions("hb02:hbGprotreeInfo:edit")
@RequestMapping(value = "selectSx")
public String selectSx(HbGprotreeInfo hbGprotreeInfo,Model model) {
//new一个字典实体
Dict dict=new Dict();
//type=act_category,进行条件查询
dict.setType("act_category");
model.addAttribute("HbGprotreeInfo", hbGprotreeInfo);
model.addAttribute("dList", dictService.findList(dict));
model.addAttribute("HbGprotreeList", hbGprotreeInfoService.findDt(hbGprotreeInfo));
model.addAttribute("items",hbGprotreeInfoService.findList(hbGprotreeInfo));
return "modules/hb/hb02/hbGprotreeInfofl";
}
应该将分类1,分类2, 住建 都勾住,有哪个属性可以用呢?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
引用来自“zTree”的评论
看 API 和 Demo 呀! checked属性、checkNode 方法等等
看 API 和 Demo 呀! checked属性、checkNode 方法等等