I have just gone through the first 3 videos and I am taking a look at the documentation. I have a question regarding the Order Edit Screen
In the videos we use a CollectionContainer to handle the lines inside the order, should make more sense to use a CollectionPropertyContainer as this is a composition relationship?
In more general terms when should I use CollectionPropertyContainer vs CollectionContainer?
Thanks!
Hi Luis,
In the video, it’s actually an instance of CollectionPropertyContainer, because in XML descriptor it’s a nested container. The Studio used in the demo injected more abstract interface due to the error which is fixed in the latest update.
In more general terms when should I use CollectionPropertyContainer vs CollectionContainer?
CollectionPropertyContainer should be used when the view of the master entity includes the nested property, so they are loaded together. It makes sense mostly when editing compositions.
Thanks a lot!
This makes sense, thank you very much.