View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0002301 | JEDI VCL | 00 JVCL Components | public | 2004-11-09 00:31 | 2004-11-15 05:44 |
Reporter | anonymous | Assigned To | obones | ||
Priority | normal | Severity | minor | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | 3.00 BETA 2 | ||||
Target Version | Fixed in Version | 3.00 RC 1 | |||
Summary | 0002301: JvDBGrid Cell Background update problem in fixed Column | ||||
Description | When using a fixed row combined with ShowCellHint, i get a problem with the Background in the fixed Col after the Hint window closes. The region, which was covered by the Hint window get's repaintet with the TJvDBGrid.Color not with the TJvDBGridFixedColor. The following change in TJvDBGrid.GetCellProps does the fix for me: ...(Line 1588) in JvDBGrid begin //if (FCurrentDrawRow >= FixedRows) and Odd(FCurrentDrawRow + FixedRows) and // (FAlternateRowColor <> clNone) and (FAlternateRowColor <> Color) and // IsAfterFixedCols then // Background := AlternateRowColor; If IsAfterFixedCols then begin if (FCurrentDrawRow >= FixedRows) and Odd(FCurrentDrawRow + FixedRows) and (FAlternateRowColor <> clNone) and (FAlternateRowColor <> Color) then Background := AlternateRowColor; end else begin Background := Fixedcolor; end; .... Any other suggestions ? Achim | ||||
Tags | No tags attached. | ||||
Date Modified | Username | Field | Change |
---|---|---|---|
2004-11-09 00:31 | anonymous | New Issue | |
2004-11-12 00:55 | anonymous | Note Added: 0005616 | |
2004-11-15 05:44 | obones | Status | new => resolved |
2004-11-15 05:44 | obones | Resolution | open => fixed |
2004-11-15 05:44 | obones | Assigned To | => obones |
2004-11-15 05:44 | obones | Note Added: 0005631 |