| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 1 year, 3 months |
| seen | 14 hours ago | |
| stats | profile views | 36 |
|
Mar 8 |
awarded | Critic |
|
Mar 2 |
awarded | Yearling |
|
Jan 31 |
comment |
Ember.Object computed property returning an object Yea that's true, but I didn't want to mention it because I feel that you shouldn't create(withMixins) an object inside another object that is extended. |
|
Jan 31 |
answered | Ember.Object computed property returning an object |
|
Jan 31 |
answered | Ember.js: retrieve random element from a collection |
|
Jan 30 |
comment |
After Ember.Application.create: addressing the created instances of controllers/routers/views etc np, did it answer your questing properly? |
|
Jan 30 |
comment |
After Ember.Application.create: addressing the created instances of controllers/routers/views etc If you need to transitionTo you can do that from a controller by calling controller.transitionTo('routeName'). Or you can send a event that bubbles through you routes with controller.send('eventName') and handle it in the respective route. IMO sending an event that bubbles to your router is the best way to do this, so that the controller has responsability for the model while the routes have the responsability of routing. |
|
Jan 30 |
answered | EmberJs: how to use connectOutlet |
|
Jan 30 |
answered | After Ember.Application.create: addressing the created instances of controllers/routers/views etc |
|
Jan 29 |
comment |
Re-usable components/views for EmberJS Then I misunderstood you question, though you were looking for this: {{view App.TextFieldWithLabel valueBinding="item.firstName" label="Gimme Your Name!"}} |
|
Jan 29 |
answered | Re-usable components/views for EmberJS |
|
Jan 25 |
comment |
How to fire an event to Ember from another framework Sweet, this was perfect! This design is excact what I was looking for. Works like a charm too. |
|
Jan 25 |
accepted | How to fire an event to Ember from another framework |
|
Jan 24 |
comment |
How to fire an event to Ember from another framework Ye, we have thought of using the container, but I think it was @wycats that renamed it to container from container so that dev should 'really' understand not to use it :) So I will stay clear of container from now. But I will look at lukes JQuery-UI-Ember attempt. Thanx for the link! |
|
Jan 23 |
comment |
Ember.js pre4, how to do the previous pre2 connectOutlet stuff You can pass in context to the action helper, so if you send in <li {{action "showModal" item}}>{{item}}</li> you can use this context from the router. See the fiddle: jsfiddle.net/gChWa/2 my 'items' are only strings here, but in your case I suppose they should be an object and contain the information you need in the template. |
|
Jan 22 |
answered | Ember.js pre4, how to do the previous pre2 connectOutlet stuff |
|
Jan 22 |
asked | How to fire an event to Ember from another framework |
|
Jan 17 |
comment |
What is the recommended way to use a shared View in a template which needs a controller One more question regarding you answer here. the function your refering: Ember.controllerFor('search') doesn't work? From what I can see the function is defined like this: Ember.controllerFor = function(container, controllerName, context) {...} or did I misunderstand something here? |
|
Jan 16 |
comment |
Selected item in a template, is there any solution for a context aware bindAttr? Hm, I see in the newest version that there is a ItemController propery in the ArrayController which might solve this. We have just merged from pre2 too router V2, will not start to merge to the new Router V2.x today =), so I will check it in a fiddle. |
|
Jan 16 |
asked | Selected item in a template, is there any solution for a context aware bindAttr? |