|
|
|
|
|
by jdc0589
4216 days ago
|
|
Knockout doesn't have built-ins to wire up UI actions automatically to CRUD calls, but the portion of that you end up having to implement is usually extremely small. As far a wiring up objects to knockout observables you have two options: 1) use the mapping plugin. I tend to stay away from this, as it makes everything on objects observable. Not bad per-se, but I like more control. 2) define your own model...its easy: https://gist.github.com/jdc0589/c48c2355302390ad954b |
|