vote up 0 vote down star

Basically a client wants to change the color of a single row in a Delphi dxDBGrid. There isn't a rows property like there is columns.

Any ideas?

flag

3 Answers

vote up 2 vote down check

Sorry, simply use the OnCustomDraw event. argh Friday mornings.

link|flag
vote up 2 vote down

You can use styles. The DevExpres Grid in DBTableView has a event named: OnGetContentStyle in Styles part.

You can create at design two styles and apply the desired style at runtime.

procedure TFormBrBase.DBTableViewStylesGetContentStyle(
  Sender: TcxCustomGridTableView; ARecord: TcxCustomGridRecord;
  AItem: TcxCustomGridTableItem; out AStyle: TcxStyle);

With ARecord you can access to the actual record values. With this values you decide and change the value of the AStyle(out) param. This line is painted with this style.

Greetings.


Neftalí
Germán Estévez

link|flag
Picky point but I think he was referring to the previous version of the Quantum Grid - the dxDBGrid - not the cxGrid. – RichardS May 29 at 16:07
vote up 1 vote down

I use on the grid's OnCustomDrawCell event, eg:

If ANode.Values[SomeColumnName.Index] = SomeValue then
  AFont.Color := clRed;

This is assuming it is the QuantumGrid v3 you're referring to. If it's v4 or later then the answer pointing you at cxStyles is correct.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.