Re: Why can I only have 1 presenter per view? It seem very non MVP

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

Re: Why can I only have 1 presenter per view? It seem very non MVP

Tim M
Chris -

Also forgot to mention that in your ValueCluster, I added a class method

default: aDefaultValue
        ^(super new)
                value: aDefaultValue;
                yourself

Which gets around my problem #1 in an earlier post where adding the first
slave reads a value from the view which is a deaf object - becuase the initial
value is nil. With the above you can choose a sensible default.

Tim