Michael Richards

Results 8 comments of Michael Richards

@rogierslag One way to do this would be to have your `i18n` formatter accept another argument for the locale you want to use. For example, if your formatter is implemented...

@jhnns This approach sounds very promising, and would solve a ton of issues around binding to root properties within nested views. The two potential problems you have listed aren't that...

@jhnns This is close. But it seems like it doesn't solve the problem entirely. The main issue is the following: If you bind to a property within an iterated view...

Couple of solutions that I can think of: 1. Instead of copying over the parent properties onto the child scope, we can have two scopes for each view — the...

@jhnns The idea behind the first solution, is to never store properties more than once. Each view's scope (currently `view.models`) will only contain the local properties to that view. In...

> It's possible to initialize all scope variables with custom values, but I think it's a good default to just inherit from the parent scope because that's very common. @jhnns...

The `each-[item]` binder is really just for arrays. People try to use it with other objects such as Backbone Collections and wonder why it's not working — for these situations,...

> The specific example here is I have a form that can exist multiple times because of binding to a collection. Each form instance needs to be configured with bootstrapValidator.js...