Lets say I have a list of boys and girls names. This collection of names also has a 'Gender' property.
I want to put a 'SelectedGender' attribute on either the Collection or the View so that I can fire a custom event only when the Selected gender changes.
Can a View be extended to have a attribute that fires a change event?
Can a Collection be extended to have a attribute that fires a change event?
Or am I forced to create another Model that contains a collection? I don't actually have code I'm just thinking design at this point.