Firepower TwwAdvComboBoxEdit

Comments

1 comment

  • Roy Woll
    I am posting our email follow-up in case others have this issue.

    I think it depends upon the style, but this is likely a bug.  Try the following workaround using the OnUpdateColumnControl event of the grid. This code disables the content painting within the grid for the control which is what paints the text.


    procedure TDataGridCustomColorsForm.dgFishUpdateColumnControl(Sender: TObject;
      UpdateControlAttributes: TwwUpdateControlAttributes);
    var T: TFmxObject;
    begin
      if UpdateControlAttributes.Column<>nil then
         if UpdateControlAttributes.Column.FieldName = 'SpeciesName' then
         begin
            TwwAdvComboEdit(UpdateControlAttributes.Control).Content.OnPaint:= nil;
         end;
    end;

     

    0
    Comment actions Permalink

Please sign in to leave a comment.

Powered by Zendesk