Tagged Questions
1
vote
1answer
70 views
ember.js dynamic route issue
I have App.User and App.Contact models that are identical and inherit from a a base class:
App.Person = DS.Model.extend({
firstName: DS.attr('string'),
surname: DS.attr('string'),
...
0
votes
2answers
53 views
ember.js: dynamic segments and queries
I have a problem with resources in ember.js.
given these router:
App.Router.map ->
@route "index", path: "/"
@resource "transport_documents", ->
@resource "transport_document", path: ...
0
votes
1answer
74 views
Ember.js: display items inside an hasMany relationship
Given these models:
App.TransportDocument = DS.Model.extend
number: DS.attr 'string'
date: DS.attr 'string'
printable_url: DS.attr 'string'
transport_document_rows: ...
0
votes
1answer
99 views
Ember.js different resources in one namespace
Cheers! I have to different resources in one namespace in my rails back-end side:
namespace :api, defaults: { format: :json } do
resources :users, only: [:show] do
collection do
...
1
vote
1answer
233 views
What's the proper way to access parameters from within Ember.Route. setupController?
Ember.Route.model has access to the params variable, but Ember.Route.setupController does not. This is troublesome for me, because my path has multiple dynamic segments, and I need to use all of them ...
2
votes
1answer
102 views
Emberjs: How do I filter users by any property using routes
I have the following route and model setup. All my users display fine using a template and
displays the firstName and email as expected.
However I am unable to filter by firstName or email when ...
0
votes
0answers
147 views
nested routes mapping
This is the setup that I have
DS.RESTAdapter.configure 'plurals',
child: 'children'
App.Router.map ->
@resource 'people', ->
@resource 'person', path: ':person_id', ->
@route ...
1
vote
1answer
260 views
Ember.js: Get id from currently active route
Probably the most straight-forward question I've asked recently.
Given a route set up like so:
Social.Router.map(function() {
this.resource('accounts', function(){
...
3
votes
1answer
428 views
What is the complete list of expected JSON responses for DS.RESTAdapter?
I am attempting to write a custom express.js based server for an Ember.js app. I am getting along fairly well but I'm constantly getting stuck trying to guess what JSON responses Ember Data is ...
0
votes
1answer
436 views
Ember does not render after transition
I have just written extremly simple Ember app, built on top of the Rails app, working with Ember Data and displaying, creating and persisting just one entity type to the server. Everything with the ...
5
votes
2answers
827 views
Ember.js sorting and filtering children of a hasMany relationship in parent route
Update #2
I found that when I refactored the filtering logic to take place in a compound computed property within the PostController instead of within individual routes, I was able to get it working. ...
2
votes
1answer
566 views
Ember.js pre.4, RESTAdapter and hasMany relationships
I'm doing my damnedest to find and/or cobble together a working jsfiddle of a hasMany/belongsTo relationship in the latest version of ember.js and ember-data that utilizes the RESTAdapter. So far I ...
0
votes
2answers
151 views
emberjs pre-4 and ember-data: no data on browser-refresh
If I browse from the index to a game, the data is shown, because of {{#linkTo}}s context, but if I'm refreshing the site, every time the game name doesn't show up.
EDIT: Here is a fiddle, but ...
2
votes
1answer
443 views
emberjs new-router-V3/controller can't create or edit record using ember-data
In this jsfiddle, I have EmBlog.PostsNewRoute and EmBlog.PostsEditRoute. The routes contain events for 'save, cancel and destroy'.
When I create a new record, it only creates it in memory and never ...
1
vote
1answer
89 views
emberjs #each helper not producing any output even though the template was rendered
Though the "posts/index" template is rendering, the emberjs #each helper inside the template does not produce any output. this is the jsfiddle: http://jsfiddle.net/rxWzu/
I have tried this:
{{#each ...