Firepower TwwAdvComboBoxEdit
In the iOS the TwwAdvComboBoxEdit.Options.HideText and TwwAdvComboBoxEdit.Options.HideTextInDropDown is not working.
How to hide the text of the dropdown imagens?
I'm using Firepower 12.0.5.2 with Delphi 10.3.2.
-
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;
Please sign in to leave a comment.
Comments
1 comment