Open dhritzkiv opened 9 years ago
Feature request: support a general change event when a field changes, and not just change:field.
change
change:field
This would match ampersand-state and ampersand-views behaviours.
ampersand-state
ampersand-views
Currently I do this by:
view.on('all', function(eventType) { if (/^change/.test(eventType)) { //match all change events } });
which is less than ideal.
It would be nice to simply do:
view.on('change', function() { match all change events });
This issue is related to #8, #20, and #42.
+1
See also #69
Feature request: support a general
change
event when a field changes, and not justchange:field
.This would match
ampersand-state
andampersand-views
behaviours.Currently I do this by:
which is less than ideal.
It would be nice to simply do:
This issue is related to #8, #20, and #42.