如何根据 MVCContrib 网格中的数据设置行的样式?
我正在修改 MVCContrib Grid 并且卡在如何格式化一行数据上基于数据的网格。
例如,假设我们有一个产品网格,其中每个产品都有名称、价格和停产等数据字段。我想突出显示所有已停产的产品行。
一种解决方法是在客户端使用 jQuery 将 CSS 类应用到已停止单元格为 TRUE 的那些行,但这似乎是一个脆弱的解决方案。我希望有一种方法可以通过 Html.Grid
方法调用在服务器端完成此操作。
谢谢
I am tinkering with the MVCContrib Grid and am stuck on how to format a row of data in the grid based on the data.
For example, say we have a grid of products, where each product has data fields like name, price, and discontinued. I'd like to highlight all product rows that are discontinued.
One workaround would be to use jQuery on the client-side to apply a CSS class to those rows where the discontinued cell is TRUE, but that seems like a brittle solution. I'm hoping there's a way to do it on the server-side via the Html.Grid
method call.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你好 Scott:尝试像下面这样添加 RowAttributes -
这将向 tr 元素添加一个类属性。然后,按照以下方式创建一个类:
抱歉,代码片段很长......
Hello Scott: Try something like the following to add RowAttributes -
This will add a class attribute to the tr element. Then, create a class along the lines of:
Sorry for the long code snippet...