mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-05 21:47:47 +02:00
* Set field value on change
This commit is contained in:
parent
cfe1da9cb6
commit
f6aa05353b
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user