Ver Mensaje Individual
  #2  
Antiguo 22-04-2015
aposi aposi is offline
Miembro
 
Registrado: dic 2006
Posts: 159
Reputación: 20
aposi Va por buen camino
Hola,
Me autorespondo por si le interesa a alguien
En el evento onRenderCell del IWDBGrid

Código Delphi [-]
procedure TFcarrito.IWDBGrid1RenderCell(ACell: TIWGridCell; const ARow,
  AColumn: Integer);
begin

 if ARow > 0 then begin  // Evitamos cambio de color del titulo del grid
    if ValorDelCAmpoEnLaBaseDeDatos > 10 then ACell.BGColor := clWebRED;
 end;

end;
Responder Con Cita