如何以编程方式格式化 radgrid 单元格
我必须根据单元格的值设置 radgrid 单元格的格式(背景色、前景色、字体样式)。
例如 如果该值为负数,则将该单元格的前景色设置为红色。
谁能告诉我如何实现这一目标?
I have to format (backcolor, forecolor, font style) a radgrid's cells depending on the value of the cell.
For example
If the value is negative set the fore color of that cell as red.
Can any one please tell me how this can be achieved?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将 onItemDataBound="Data_OnitemDataBound" 行添加到 aspx 页面中的 radGrid 声明中。
然后将其添加到您的代码后面。 Cells[] 中的数字是您要修改或验证的列的索引。
Add the line onItemDataBound="Data_OnitemDataBound" to your radGrid declaration in your aspx page.
Then add this to your code behind. The number in the Cells[] is the index of the column you want to modify or validate against.
下面的代码可用于 RadGrid 中的所有单元格。
Below code can be used for all the cells in the RadGrid.