View Issue Details

IDProjectCategoryView StatusLast Update
0003520JEDI VCL00 JVCL Componentspublic2006-04-14 07:45
ReporterultimoAssigned Toobones 
PrioritynormalSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
Product Version3.10 
Target VersionFixed in Version3.30 
Summary0003520: Fixed - CellHint for boolean Field display True or False if column width < 25
DescriptionShowCellHint if field is Boolean and cell width is < 25, display hint with True or False (field value)

On procedure

procedure TJvDBGrid.CMHintShow(var Msg: TMessage);
[..]

Prior
  if not (Field is TBlobField) then
    HintStr := Field.DisplayText
  else
    HintStr := '';

After
  if not (Field is TBlobField) and not (Field is TBooleanField) then
    HintStr := Field.DisplayText
  else
    HintStr := '';



TagsNo tags attached.

Activities

obones

2006-04-05 06:48

administrator   ~0008981

So what is your intent here? You don't want a hint for a boolean value?

ultimo

2006-04-07 06:39

reporter   ~0009016

Yes, if you set ShowCellHint, I notice hint value of "True" OR "False", on boolean field if cell width is < 25

obones

2006-04-14 06:55

administrator   ~0009114

Reminder sent to: Informatix

Fred, what is your opinion on this issue?

Informatix

2006-04-14 07:20

developer   ~0009115

It has been fixed a few weeks ago (20/02/06) in version 1.121.

Fred

obones

2006-04-14 07:45

administrator   ~0009117

Perfect. Thanks for letting me know.

Issue History

Date Modified Username Field Change
2006-02-19 10:46 ultimo New Issue
2006-04-05 06:48 obones Note Added: 0008981
2006-04-05 06:48 obones Status new => feedback
2006-04-07 06:39 ultimo Note Added: 0009016
2006-04-14 06:55 obones Note Added: 0009114
2006-04-14 07:20 Informatix Note Added: 0009115
2006-04-14 07:45 obones Status feedback => resolved
2006-04-14 07:45 obones Resolution open => fixed
2006-04-14 07:45 obones Assigned To => obones
2006-04-14 07:45 obones Note Added: 0009117