隐藏复选框列表中列表项的复选框图标
有没有办法隐藏 ListItem 的复选框图标并仅显示值文本。
如下所示 - 项目的复选框被隐藏。
我可以发现我可以禁用(灰显)或完全隐藏(不可见)列表项,但不仅仅是隐藏复选框图标(方形)
Is there a way to hide the checkbox icon for an ListItem and just display the value-text.
Like Below - Checkbox for items is hidden.
I could figure out that I could disable (grey-out) or completely hide (invisible) a list item but not just hide the checkbox icon (square)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我最近将其作为项目的一部分完成,并通过在创建 ListItem 时设置属性然后使用 CSS 对其进行样式化来完成。
由于该属性是作为标记的一部分添加的,因此您可以在 CSS 中使用以下描述符。
当然,您可以按照自己喜欢的任何方式格式化 CSS,但这应该可以帮助您入门。
如果您想了解在 CSS 中使用选择器的更多信息,请查看此参考 w3.org。
哈!
I recently did this as part of a project and accomplished it via setting an attribute when creating the ListItem and then using CSS to style it.
Since the attribute is added as part of a tag, you can use the following descriptor in your CSS.
Of course, you can format the CSS any way you'd like, but this should get you started.
If you'd like more information using selectors in CSS, check out this reference from w3.org.
HTH!
CSS3 将帮助您定义内联样式,好的一点是为 CheckBoxList 制作特殊的 UserControl 以使用以下解决方案
,并在 CheckBoxList PreRender 事件中禁用 ListItem 以应用 CSS input:disabled 选择器
CheckBoxListMajad.RepeatColumn=3
CSS3 will help you, define Inline style, good point is to make special UserControl for CheckBoxList to use following solution
and in CheckBoxList PreRender event disable ListItem to apply CSS input:disabled selector
CheckBoxListMajad.RepeatColumn=3