Jump to content

Recommended Posts

Posted

Hi,

 

For internal calculations I need that when DataSource attached to grid be edited, recalcule various vars.

I am trying to perform a post when tab or intro is pressed but when editor row is shown does not work.

 

Test code without success:

procedure TUniFormFacturacion.UniDBGridDetallesAjaxEvent(Sender: TComponent;
 EventName: string; Params: TStrings);
begin
 inherited;

 if SameText(EventName, 'AfterEdit') then
 begin
   DataSourceDetalles.DataSet.Post; // ERROR IS RAISED DATASET IS NOT IN INSERT OR EDIT MODE. OnPost I recalcule all vars needed.
 end;

end;

Posted

Hi,

 

Dou you refer to TDataSet.OnAfterEdit method ?

 

I need to post dataset when any field is changed.

 

Could you help me ?

 

You'll need to be more specific, DataSet is on dsEditing or dsInsert states, nor both at same time.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...