model has object "params" which has item "x", how can i watch x as property? .property('model.params.x') seems to get called if any of params is changed
alexspeller, did it that way now, thanks. thought there's a shorter way, but that's good as well
dc__ has quit
Johnade joined the channel
komlev has quit
mszrnyi joined the channel
mszrnyi
Whats the best approach to save associations with a record. I've model with a hasMany. Saving my 'parent' model will send null as ids for the associations
kroofy_ has quit
kroofy joined the channel
alex88 has quit
alexspeller
mszrnyi: sounds like you need EmbeddedRecordsMixin
koriroys joined the channel
emberjs-hubot has quit
sly7_7 has quit
emberjs-hubot joined the channel
ecmacoder joined the channel
mszrnyi
alexspeller: Thanks. Didn't use it yet. But in gerneral, when using a model with relations which might be created on a models new route as well, embedding is the proper solution in ember?
phidah joined the channel
lislis joined the channel
samselikoff joined the channel
TMM joined the channel
kaspernissen has quit
komlev joined the channel
lislis has quit
lislis joined the channel
samselikoff has quit
joshua__ joined the channel
krz joined the channel
Pupeno joined the channel
Pupeno
When I run ember install ember-cli-simple-auth, I get this error: The `ember generate` command requires an entity name to be specified. For more details, use `ember help`. Does anybody know why? (https://github.com/simplabs/ember-cli-simple-au...)
joshua__
Hey, I am creating a multi part form with Ember and following the answer from here to handle each section http://stackoverflow.com/questions/21620782/mul... but in order to save the values from each form section I need to use an ember object to save the values
what is the correct way to create a temp ember object in which I can add values and then later I will save to a modal
kaspernissen joined the channel
bengillies joined the channel
mszrnyi1 joined the channel
mszrnyi has quit
Pupeno
joshua__: I am really new to emberjs, so this is probably wrong, but I believe you just use the model for that.
joshua__: the model is modified on each form pane the user goes through and at the end you send it to the server.