Steema Issues Database

Note: This database is for bugs and wishes only. For technical support help, if you are a customer please visit our online forums;
otherwise you can use StackOverflow.
Before using this bug-tracker we recommend a look at this document, Steema Bug Fixing Policy.



Bug 2105 - DefaultHeight property seems to not work when there're bitmap cells
Summary: DefaultHeight property seems to not work when there're bitmap cells
Status: CONFIRMED
Alias: None
Product: TeeGrid for Delphi
Classification: Unclassified
Component: Grid (show other bugs)
Version: unspecified
Hardware: PC Windows
: --- normal
Target Milestone: ---
Assignee: david berneda
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2018-10-03 04:34 EDT by pep jorge
Modified: 2018-10-03 04:34 EDT (History)
0 users

See Also:
Chart Series: ---
Delphi / C++ Builder RAD IDE Version:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description pep jorge 2018-10-03 04:34:52 EDT
DefaultHeight property seems to not work when there're bitmap cells, i.e :

procedure TFormGridDataset.ComboSourceChange(Sender: TObject);
begin
  case ComboSource.ItemIndex of
    0: TeeGrid1.DataSource:=nil;
    1: begin
        TeeGrid1.DataSource:=ClientDataSet1;
        TeeGrid1.Rows.DefaultHeight := 50;
       end;
    2: begin
        TeeGrid1.DataSource:=ClientDataSet2;
        TeeGrid1.Rows.DefaultHeight := 100;
       end
  else
    TeeGrid1.DataSource:=DataSource1;
  end;

Only works when itemindex = 1 which is clientdataset of customers, the 2 is from animals table which contains a bitmap field.