I'm new to sproutcore, so this might not be an actual issue, but in Section 4.2 "Bindings and Chained Property Paths", should
MyApp.usersController.mainUser.name = "Harriet"; instead be
MyApp.usersController.mainUser.set('name', "Harriet"); and likewise for Eunice?
Or do bindings work even when setting properties directly?
http://guides.sproutcore.com/core_concepts.html#bindings-and-chained-property-paths
I'm new to sproutcore, so this might not be an actual issue, but in Section 4.2 "Bindings and Chained Property Paths", should
MyApp.usersController.mainUser.name = "Harriet";
instead beMyApp.usersController.mainUser.set('name', "Harriet");
and likewise for Eunice?Or do bindings work even when setting properties directly?