Ember.Router is a built-in routing mechanism within Ember.js which represents application state with a URL. It gives you helpful tools for managing application state in a way that scales with your application.

learn more… | top users | synonyms

0
votes
1answer
23 views

How to Reference Router Generated Controller from View

I have the following code in my Ember app... App.Router.map(function () { this.resource('messages', { path: '/messages' }, function() { this.route('message', { path: '/:message_id' }); ...
0
votes
0answers
34 views

Problems with routes in ember rc3

in the previous versions of ember.js, when the concept of route didn’t exist, I use this type of link: localhost/#search=45103910 To automatically search an item no matter what kind of it. But now ...
0
votes
2answers
39 views

Detect URL change and grab URL in EmberJS (using Discourse)

I'm using Discourse (http://www.discourse.org/), which is built on EmberJS, and trying to observe any time the URL changes, e.g. when opening a new topic. I've seen the answer for observing the ...
0
votes
1answer
43 views

Understanding Ember routes

Assume I have routemap like this: App.Router.map -> @resource 'posts', -> @resource 'post', {path: '/:post_id'} So I have list of posts on /posts route and a single post on ...
1
vote
1answer
97 views

Ember JS transition to nested routes where all routes are dynamic segments from a view

We are writing an application using EmberJS. However we are still new with this framework and we're having a hard time resolving some of what may seem to be straight forward. The model is pretty ...
3
votes
1answer
67 views

How do I retrieve the path of a route?

Given the following Router setup: App.Router.map(function() { this.resource('posts', function() { this.route('new'); this.resource('post', { path: ':post_id' }, function() { ...
0
votes
0answers
34 views

Reload current route when dynamic segment changes

In the app I'm working on there are different routes, some of them containing a dynamic segment with a unique resource id, like this: app.com#/resourceId/report There's a global resource list ...
0
votes
2answers
53 views

Start ember in a specific route

Im trying integrate emberjs on ruby on rails, https://github.com/emberjs/ember-rails rails generate ember:install --head Ok now emberjs is working, but now how can I for example make emberjs work ...
1
vote
1answer
71 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
0answers
27 views

Ember: access a parent view from a route

Is there a way to access views from an ember route? My use case: I want to do something similar to jquery accordion (collapsible / expandable) where each accordion item is a different view -- the ...
0
votes
1answer
48 views

How can I transition to a non-ember URL from a router action?

I'm in the process of transitioning a standard Rails app over to an Ember app with Rails API. This is an incremental process so for the short term users will be switching back and forth between the ...
0
votes
1answer
67 views

some help on Em.Route#send?

I am trying to implement router events and using the send function of the router to trigger the events on the router. But couldn't get any documentation on this. What I am trying to implement is that ...
1
vote
0answers
34 views

Emberjs renders the wrong template in a nested route

I have a nested route that looks like this: App.Router.map(function(){ this.resource('comment', {path: '/:commentId'}, function(){ this.route('edit'); }); }); In my markup, I have a ...
1
vote
1answer
68 views

How can I set a link to route with a dynamic segment

How can I set a link to route with a dynamic segment. According to guide I start with this window.App = Ember.Application.create() App.Router.map -> @resource 'products' @resource 'product', ...
0
votes
2answers
39 views

How can I directly invoke an event handler on a route in Emberjs?

I'm hoping to stub/spy on a route's event handler in ember.js using my testing framework of choice, jasmine. Usually this involves overwriting the function of interest with a spy, which requires ...
0
votes
2answers
57 views

Setting the Ember root URL without redirection

Let's say my Router looks like this: Bananas.Router.map -> @resource "bananas", -> @route 'index', path: '/' and my BananasIndexRoute looks like this: Bananas.BananasIndexRoute = ...
0
votes
0answers
41 views

Adding a new route to an EmberJS app screams “Expecting ID got invalid”

I am getting my feet wet with EmberJS and I am all over the place without really making much headway. Really want to tear my hair apart at this point. I am trying to simply introduce different ...
0
votes
1answer
66 views

Ember.js - How to bind a view to a controller instance created by the router

I'm using the latest build of Ember.js. I have an Ember app that displays a bar chart using flot.js. A view is bound to a singleton Object Controller to dynamically update the chart. I have a simple ...
0
votes
2answers
37 views

Ember Router and Controller

I try to get the example from the Ember Guide to work but I dont get it: window.App = Ember.Application.create() App.Router.map -> this.route("about"); this.route("favorites", { path: "/favs" ...
0
votes
1answer
66 views

EmberJS “Building an App with Ember.js” error routing - Resolved

I use EmberJS 1.0.0 RC3. Those files are based on this tutorial: http://www.youtube.com/watch?feature=player_embedded&v=Ga99hMi7wfY#! (from emberjs.com/guides/). My index.html is: <!doctype ...
0
votes
0answers
48 views

Nested outlets in a single route

I have a single route that has a lot of complex behavior governed by multiple different controllers. Using named outlets, I render these views and their associated controllers into my page for this ...
1
vote
1answer
86 views

how to create a right structure for nested routes in ember.js?

I need to create an application with routes: /users - list of users /users/123 - user info /users/123/items - list of user items /users/123/items/456 - items info I wrote this code here ...
0
votes
1answer
54 views

section links with ember.js

I'm trying to include the bootstrap scrollspy in my ember app. The scrollspy needs href="#section1" to do it's work, which is obviously confusing the router. That is giving me javascript errors like ...
2
votes
1answer
74 views

Ember.js - filtered model change does not trigger a change in rendered template

I have an application that prints a list of reservations. There are 2 routes: reservations.allReservations reservations.newReservations The Problem: The allReservations route works fine. If ...
1
vote
1answer
75 views

Nested routes via simple relationship with EmberData and rails API?

I think I have Ember's nested resource down (master-detail). But I'm trying to continue the nest one level deeper but through a has_many relationship in my data. I'm using EmberData and Rails as an ...
0
votes
1answer
63 views

emberjs-RC2 render helper scope and action bubbling not allowing form to save

The jsfiddle. From the posts#index template, I can create a new comment by using the #linkTo helper which goes to the PostNewComment Route and renders the post/newcomment form. If I click save the ...
0
votes
1answer
64 views

Ember Route only working on manual refresh

Im pretty new at ember and I want to make Route work with a string instead of id for a prettier url. This Router code here is working when I enter the path manually example.com/#/Commune. But when ...
0
votes
0answers
79 views

EmberJS dynamic routing and configuration

I use EmberJS v1.0.0-rc.2 and requireJS. My app structure is kinda like that. - app - - moduleA My main file: #app/main.js var App = Ember.Application.create({ VERSION: '1.0', //Log ...
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
71 views

initial route is not in history — ember.js location: “history”

I'm using ember.js with location: "history". The first route of my site that is loaded (i.e. the one I type into the URL) renders fine. I can click a linkTo anchor to get to a second route, but when ...
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
60 views

ember.js: how do nested resources correspond to templates?

given this fiddle ( I couldn't make it work, i'm sorry and very frustrated): i don't understand why, when i ask for a book detail, ember is asking not asking my books/book, but my book template. Is ...
0
votes
2answers
105 views

How can we reload a route Ember JS (versoin 1.0.0-rc.1)

I have a condition where my route: application.com/#/sample/:id is redirected back to application.com/#/sample/:id For example, application.com/#/sample/1 gets an event which redirects to ...
0
votes
1answer
120 views

emberjs-RC2- how to access router instance from controller & actions don't bubble to router

In the router I have an event 'removeComment'. In the controller if access it via this.get('target').send('removeComment', context);, I get the error Nothing handled the event 'removeComment'. When I ...
0
votes
1answer
53 views

Hooking into “root” route in new Ember rc1 router

I'm looking for a way to hook into the router as it transitions to any given leaf resource during app init. In other words, I want to run a little init routine every single time an app is loaded, no ...
0
votes
1answer
37 views

Ember.js router with variable

I've just started using Ember.js and have got stuck at the first hurdle! My URL structure is /username/action, so for example /matt/feed (or just /matt with a default view). But, although I've ...
0
votes
1answer
75 views

ember linkTo sending empty params in route's model hook

I have a blog site where going to the url /posts should list all posts. Then clicking a link for /posts/:post_id should display the details of that post. However, when clicking the link, it seems ...
0
votes
1answer
101 views

Ember.js accessing and organizing controllers with new router

I'm trying to understand controllers in the new router system. I understand they exist to decorate models and present non-permanent state to the view/template for rendering. And I understand the ...
0
votes
3answers
196 views

emberjs nested dynamic route segment returning null and unable to update child record

I am trying to implement a comment-feature, to display a list of comments that belongs to a single post. Then click edit and edit any of the selected comments from from all the comments that belong to ...
1
vote
2answers
155 views

Ember router: how to use transitionTo

I have a link that looks like this index.html#/calendar/year/month This is how I set up my routes: App.Router.map(function() { this.resource('calendar', {path: ...
2
votes
2answers
73 views

Ember-Router: How to add a route in run-time in Ember 1.0-rc2?

In the new Ember.Router that shipts with Ember 1.0-rc2, is it possible add route in run-time?
1
vote
2answers
115 views

Ember.js get currrent route

I'm switching to the new ember router but have a very simple question -- how do I figure out what route I'm currently in? Before you could do something like App.router.get('currentState'), but this ...
1
vote
1answer
77 views

How to access controller from route?

Is there any foolproof way to access controller from a route? <a href="#" class="btn" {{action "someAction" user}}>add</a> App.ApplicationRoute = Ember.Route.extend events: ...
0
votes
2answers
59 views

Using conditional in Ember

Here is my jsfiddle link and I am trying to print below DropDown a message - "Select option B" when any option other than B is selected. When Option B is selected , I have to print Id and option ...
1
vote
1answer
110 views

Ember.js Router/controller properties

I'm trying to wrap my head around the model property or a route vs. the content property of the controller. If you set the model property in a route, does this automatically set it to the content ...
0
votes
1answer
63 views

Ember, working with a model

I'm confused about how to set up retrieve information from my (dynamic) model in Ember.js Here is my model (works so far): App.Router.map(function() {     this.resource('calendar', { path: ...
1
vote
1answer
37 views

replaceRoute with an object id

I want to use the replaceRoute in an ember controller but need to pass an object id. Something along the lines of: this.replaceRoute('projects.edit', 4) Is that possible at all or should it be done ...
0
votes
1answer
34 views

How do you specify the view with the new EmberJS router?

Trying to move over to Ember 1.0.0-rc2, this I'm yet to solve (syntax below is CoffeeScript): App.Router.map(() -> @route('EditPrices', path: '/redigera') ) How would I specify that this route ...
5
votes
1answer
77 views

can we view all the routes in emberjs aka something similar to what rake routes does in rails

As the routes file in emberjs is becoming large, I am finding it difficult to keep track of all the routes supported by emberjs app, rake routes in rails gives a list of routes in the rails app, is ...
1
vote
1answer
107 views

“Dynamic segment” in Ember.js?

Throughout the Ember.js documentation, one finds the concept of dynamic segment mentioned at several places. What does it mean?

1 2 3 4