LCL: Fix updating list dataset on dblookupcombobox on selection or autocomplete, issue #39343

This commit is contained in:
Jesus Reyes A 2021-08-29 00:49:48 -05:00
parent 52f2a8b88f
commit fef094c56f
4 changed files with 20 additions and 2 deletions

View File

@ -862,6 +862,7 @@ Type
protected
procedure DefineProperties(Filer: TFiler); override;
function DoEdit: boolean; override;
procedure DoAutoCompleteSelect; override;
function IsUnbound: boolean;
private
FLookup: TDBLookup;

View File

@ -144,6 +144,12 @@ begin
inherited DoExit;
end;
// this is a select triggered by autocomplete
procedure TCustomComboBox.DoAutoCompleteSelect;
begin
Select;
end;
{------------------------------------------------------------------------------
Method: TCustomComboBox.SetSorted
Params: val - true means "sort" the combo
@ -636,7 +642,7 @@ begin
Text := sResultText;
SelStart := iSelStart;
SelLength := UTF8Length(Text);
Select;
DoAutoCompleteSelect;
end;
end;
end;

View File

@ -55,8 +55,10 @@ begin
if IsUnbound then begin
if FDetectedEvents and DBCBEVENT_CHANGE <> 0 then
DoOnChange;
if DetectedEvents and DBCBEVENT_SELECT <>0 then
if DetectedEvents and DBCBEVENT_SELECT <>0 then begin
FLookup.UpdateData(ItemIndex);
DoOnSelect;
end;
if DetectedEvents and DBCBEVENT_CLOSEUP <>0 then
DoOnCloseUp;
end
@ -64,6 +66,14 @@ begin
Result := inherited DoEdit;
end;
procedure TDBLookupComboBox.DoAutoCompleteSelect;
begin
if IsUnbound then
FLookup.UpdateData(ItemIndex)
else
UpdateData(Self);
end;
function TDBLookupComboBox.IsUnbound: boolean;
begin
result := (FDataLink.DataSource=nil) or (DataField='');

View File

@ -345,6 +345,7 @@ type
procedure CreateParams(var Params: TCreateParams); override;
procedure InitializeWnd; override;
procedure DestroyWnd; override;
procedure DoAutoCompleteSelect; virtual;
procedure DoEnter; override;
procedure DoExit; override;
procedure DrawItem(Index: Integer; ARect: TRect;