Jump to content

DBGrid edition


KingOrmon

Recommended Posts

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;

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...