From the ember docs its clear you should be able to save a dirty model
var m = App.MyModel.find(10) ;
...
m.set("firstName", "John") ;
m.get("isDirty") ; // --> true
Now, I don't know how to save, things like
m.save() ;
App.MyModel.save(m) ;
//etc
do not work. Any suggestions ?
CHeers