asp.net 复选框和嵌套转发器
我在每一行中都嵌套了重复器和复选框(如树视图或分类和项目视图)。 每次选中/取消选中类别都应选中/取消选中项目。 有什么建议吗? 谢谢,
I have nested repeaters and checkbox in each row(like a tree view or ctaegory and items view).
each check/uncheck the category should check/uncheck the items.
any suggestions?
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我以前必须这样做,并且我已经使用简单的 JavaScript 完成了它。基本上,当您绑定中继器时,将 CategoryId 提供给复选框的检查事件,例如,
将您的子项包裹在 ID 以 CategoryId 结尾的 div 中,例如,
这将允许您通过执行以下操作在 SelectCategory(catId) 函数中找到它
循环遍历它的子项并检查你的项目:
使用 jQuery 效果更好:
I had to do this before and I've done it with a simple JavaScript. Basically, when you bind you repeater, give the CategoryId to the checkbox's check event, e.g.
have your child items wrapped around in a div with ID ending with CategoryId, e.g.
this will allow you to find it in your SelectCategory(catId) function by doing
loop through its children and check your items:
even better with jQuery: