Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
对于我需要在 RadPHP XE2 中工作的项目
在这个项目中,我创建了一个 DBGRid。
这一切都很好。
现在我需要更改每个单元格的单元格颜色。
单元格的颜色取决于该单元格内的值。
像这样:
如果值 > 0 返回绿色,否则返回红色
那么这里是你需要的 PHP 代码。=)虽然不太了解你的问题。
if( $value > 0 ){ return "red"; }else{ return "green"; }
我认为您应该在 dbgrid 组件的 OnBeforeShow 事件中添加颜色更改代码。