Hi,
Where is the TAureliusDataset.CreateObjectsOnPost property?
The manual section about the object lifetime tells us:
1. A record in Insert state is not Posted.
When you Append a record in the dataset, an object is created (unless CreateObjectsOnPost property is set to true). If you then Cancel the inserting of this record, the dataset will silently destroy that object.
It seems that this internal property is always true so the object does not exist until the post operation is called. How can I change this? I need access to the aurelius object before the post is done and I need that object to be in sync with the dataset fields values. It this possible in Aurelius?
In Aurelius code I see that the AureliusDataset.Current<T> always return nil if the dataset is in insert mode. That doesn't seem right.
Scott.