Order of events with inheritance

4
If object type Child inherits from Parent and both Child and Parent have events occuring at the same time (Before Commit, for example), in what order should the events fire; and should the later events still fire if one of the earlier events returns FALSE? Is this behaviour the same in all versions of Mendix?
asked
1 answers
2

The events are not guaranteed to happen in a certain order. If one of the events return false, the other events are not fired.

answered