Aurelius Dataset with Xdata


I have a FMX application.

I have an Xdata Client to pull data and assign the source to the Aurelius Data set:

  RUFUSClient := TXDataClient.Create;
  RUFUSClient.Uri := 'http://localhost:2001/e-aviso/RUFUSDemo/';

  Organisations := RUFUSClient.List<TOrganisations>;
  AureliusDatasetOrganisations.SetSourceList(Organisations);
  AureliusDatasetOrganisations.Open;

I have live binding to a String grid - Data is displayed as expected - however, the update event is not fired when editing the field in the string grid...

Any ideas?

You mean you have assigned a handler for the TAureliusDataset.OnObjectUpdate event and that handler is not fired?

If yes please provide more details since this should work with no problem. What are exact steps to reproduce?