Telerik Grid MVC 2 更改 CSS 属性

发布于 2024-10-02 07:44:24 字数 206 浏览 8 评论 0原文

我有一个带有复选框列的可选择 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

っ左 2024-10-09 07:44:24

Telerik mvc 网格具有内置的行选择功能。看一下这个页面: 客户端选择在 TELERIK MVC GRID 中。
仅将以下内容添加到网格中

.Selectable()
.ClientEvents(events => events.OnRowSelected("onRowSelected"))

就可以了

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

.Selectable()
.ClientEvents(events => events.OnRowSelected("onRowSelected"))

should work

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文