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?