Telerik Grid MVC 2 更改 CSS 属性
我有一个带有复选框列的可选择 telerik 网格。当选中该复选框时,我使用 JavaScript 将行的背景颜色更改为黄色。
当使用 javascript 取消选中复选框时,我想恢复网格的原始 css。我可以切换行背景颜色,但由于网格是可选的,因此 css 的行为方式与默认网格不同。这是具有交替的行背景颜色和行悬停背景颜色变化。
这可能吗?它是如何做到的?谢谢。
I have a SELECTABLE telerik grid with a checkbox column. When the checkbox is selected I change the background color of the row to yellow using javascript.
I would like to restore the original css of the grid when the checkbox is deselected using javascript. I can toggle the row background color but because the grid is selectable the css doesn't act the same way the default grid. This is having alternating background colors for rows and a row hover background color change.
Is this possible, and how is it done? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Telerik mvc 网格具有内置的行选择功能。看一下这个页面: 客户端选择在 TELERIK MVC GRID 中。
仅将以下内容添加到网格中
就可以了
Telerik mvc grid has built in row selection capabilities. Take a look at this page : Client Side Selection in TELERIK MVC GRID.
Only adding the following to your grid
should work