ZK Notify Change from Base ViewModels - 04.01.2013
In annoying thing in ZK is that if your ViewModel extends another ViewModel and your base ViewModel
decides that it needs to delegate a call to its subclass, the subclass @NotifyChange({“props}”)
will not automatically be triggered. As an example take:
Don’t forget the @Init(superclass=true) in your subclass (I think you can add it to the Class
annotation if you aren’t providing an init method in your subclass.) The above is clunky but it works.