* Set field value on change

This commit is contained in:
Michaël Van Canneyt 2023-12-31 17:12:43 +01:00
parent cfe1da9cb6
commit f6aa05353b

View File

@ -124,8 +124,10 @@ Type
end;
TDBCustomHTMLInputElementAction = class(TDBCustomHTMLElementAction)
private
Protected
procedure DoKeyDown(aEvent: TJSEvent); override;
procedure DoEditChange(aEvent: TJSEvent); virtual;
Procedure ActiveChanged; override;
function NeedsClick(aEl: TJSElement): Boolean;
Procedure StartEditing; override;
@ -525,9 +527,17 @@ begin
aEl.addEventListener(sEventKeyDown,@DoKeyDown);
if NeedsClick(aEl) then
aEl.addEventListener(sEventClick,@DoKeyDown);
aEl.addEventListener(SEventChange,@DoEditChange);
end;
procedure TDBCustomHTMLInputElementAction.DoEditChange(aEvent : TJSEvent);
begin
if Link.Edit then
ElementToDataset;
end;
procedure TDBCustomHTMLInputElementAction.DoKeyDown(aEvent : TJSEvent);
begin