Ember.js is an advanced HTML5 MVC application framework written in JavaScript.

learn more… | top users | synonyms (2)

0
votes
1answer
13 views

How to set a textbox value in Ember.js

forgive me if this question is too silly .I'm studying Ember.js myself and I'm stuck with a problem I need to set a value of the textbox dynamically and I dont know how to do that now I'm using jquery ...
0
votes
2answers
12 views

Which Editor is the best Ember.js editor on Mac

Which editor is the best editor for ember.js on Mac. Which editor do you need? Which advantages the editor has ?
0
votes
1answer
24 views

Delaying route change until data is loaded in Ember

In Angular the $routeProvider resolve property allows delaying of route change until data is loaded. Given the route model hook in Ember returns a promise I was wondering how that stuff was done in ...
0
votes
0answers
37 views

Back and forward buttons not rendering templates in ember rails app

I always have this issue in ember apps that are built on a rails backend. I have a groups.hbs template which lists out a bunch of groups, when you click on a group it loads the group.hbs template next ...
0
votes
0answers
15 views

Ember Data: hasMany with model that has multiple belongs to of the same type

I am having a problem with Ember Data where one model technically has two hasMany relationships of the same model. I have my User, Follower and Following models setup like so: User = ...
0
votes
0answers
22 views

“Can't verify CSRF token authenticity” when testing emberjs/rails/devise app using qunit

Warning I'm a newbie. I have a emberjs/rails application using devise for user authentication. I am building integration tests using qunit. I manually log into the app before I run tests. GET ...
0
votes
0answers
24 views

How can i send POST requests through ember

I have simple functions in my ember application that just do stuff like adding user vote to a post, or follow another user, and i was wondering how can I do this in ember? I don't want to use this ...
0
votes
1answer
16 views

Trying to display api data from an XHR request in handlebars

I'm pulling in a list of groups from an api to my Ember app with an XHR request. I'm trying to display that list in the groups/index.hbs template. In the template I have: <h1>GROUPS ...
0
votes
1answer
30 views

Ember.js finding current element

Here is the pattern Inside Songs.IndexRoute = Ember.Route.extend({}) we have some events, which are trigerred with {{action selRow}} in HTML file. They do abstract events, but can't define ...
0
votes
0answers
20 views

Not able to get JSON data with Ember Data RESTAdapter

I am not able to get data from this api: http://cd2.apiary.io/tracks There are no errors logged and I am getting a 200 status. All looks good, just no data on page. The output I am getting is: ...
0
votes
0answers
14 views

linkTo does not make full rows clickable

I am trying to use linkTo as explained here This is my template: {{#each model}} {{#linkTo "nodes.show" this tagName="tr"}} <td>{{shortenHash id}}</td> ... ...
0
votes
1answer
19 views

Emberjs Router with requirejs

When building a relatively large application, how should I define my router? More specifically, if using requirejs I have the following code: main.js define('application',['routes/app_router'], ...
0
votes
1answer
16 views

Ember view - fire didInsertElement on BaseView and ExtendedView as well

I have got BaseView and ExtendedView as follows: App.BaseView = Ember.View.extend({ didInsertElement: function(){ alert("BaseView didInsertElement fired"); } }); App.ExtendedView ...
0
votes
3answers
53 views

Client side MVC instead of server side MVC

Instead of using server side MVC like Ruby, Python, PHP to build very complex web app, why should not we split our web app into multiple modules, and build each with client side MVC like backboneJS, ...
0
votes
3answers
20 views

Ember-rails project as a mountable engine?

Ember & Rails newb here with a serious question about both. I'm building a project that leverages the ember-rails setup as exemplified here: https://github.com/dgeb/ember_data_example However, ...
0
votes
1answer
12 views

Ember-Data models should save ids of non-Ember-Data-Models - how?

I have a model which should save the ids of a client-side known model as an array to the server, but I'm struggling to find a good way to achieve this. Here is the model class that is known by the ...
0
votes
0answers
13 views

Ember.js RESTAdapter Cannot call method 'then' of undefined

I have a rest adapter: App.Adapter = DS.RESTAdapter.extend({ bulkCommit: true, url: 'http://10.0.0.106/bank', ajax: function (url, type, hash) { hash.url = url; hash.type ...
0
votes
1answer
28 views

Ember.js #linkTo not pulling correct property from context for dynamic segment

The linkTo helper is creating <a> tags with an href that looks like this. <a id="ember561 class="ember-view" href="/orgs/<Organization:ember349:17>"> The url is actually the ...
1
vote
0answers
23 views

what is the best way to create an ember.js addon

I want to create an ember.js addon. I've started an addon using ember-dev but somebody mentioned that they might be moving to use grunt. Can anybody recommend an approach?
0
votes
0answers
20 views

Ember data Doing a general search on a Model after some instances have been added to a relationship

I have these basic models (super simplified to show the problem): App.Alert = DS.Model.extend({ recipients: DS.hasMany('App.Person') }) App.Person = DS.Model.extend({ name: DS.attr("string") ...
0
votes
0answers
22 views

Model initialization when inserting Ember.js hierarchized view in a template

it is possible to insert view into view in ember.js: <script type="text/x-handlebars" id="application"> {{view App.ProfilsView}} {{outlet body}} {{view App.FooterView}} </script> you ...
0
votes
2answers
39 views

How to get current url (including the part after hash) with Ember

I need to get current url from Ember as a "redirectTo" parameter. The parameter will be used to redirect users back to the same page after they login from other app. The url looks like ...
0
votes
0answers
19 views

Prevent Disposal of View in Ember Router

I want to create an app, where i have a mainContainer and a sideBar, the sidebar and the mainContainer should have routes, without that one of the both clean up the other, when its route is called. ...
0
votes
0answers
16 views

inconsistent behavior from emblem conditional bindings and ember array controller

I'm having trouble getting consistent behavior from a conditional class binding in an Emblem template. The template is for a task list and the relevant snippet looks like this: each task in content ...
0
votes
1answer
80 views

Display D3 graph with ember

Could anybody explain how to render a simple line graph with d3 and ember, using ember-data for the models. The graph should rerender when the underlying model changes. I found the following ...
1
vote
1answer
27 views

Cannot get jqueryui tabs to work properly in Ember view

I'm trying to run up a little prototype in Ember.JS at the moment with a view to completely re-writing the UI of a web application as an Ember Application running against a WebAPI, but although I've ...
0
votes
1answer
65 views

CSS is ignored in EmberJS handlebars

Have a problem with formatting table for EmberJS. Clear table is nice with all necessary CSS formatting, but when I add <script type="text/x-handlebars"></script> for Ember output ...
0
votes
1answer
18 views

How can I set the url for an emberjs object reload to a custom url?

I'd like to customize the entire url, so I can use a regular querystring format, both for reloading an object and searching for specific objects. Is this possible?
0
votes
2answers
43 views

Ember.js - is it possible to store/restore Ember.TEMPLATES in window.localStorage?

I wonder if it's possible to store/restore the Ember.TEMPLATES cache object in the localStorage of the client? The reason why I want to do this is because I'm not sending the client the whole bunch ...
0
votes
1answer
18 views

Show version of ember-data

Ember does the following when starting an application: if ( Ember.LOG_VERSION ) { Ember.LOG_VERSION = false; // we only need to see this once per Application#init ...
0
votes
1answer
20 views

Using Ember-data RESTAdapter with different URL

I'm using ember data with different URL as i'm moving from ember-rails, to external ember application, so API url is http://localhost:5000 and ember application is http://localhost:9000. Now the ...
0
votes
1answer
23 views

Access browsing history in ember

I have the following two paths to edit an object (node) in my application: List nodes -> click edit icon List nodes -> select node -> click edit button I have the option to cancel the editing. ...
0
votes
2answers
32 views

EmberJS Dynamic segment error

As most Emberists would know, I am in the middle of tearing my hair apart at the moment, trying to overcome this vertical wall that EmberJS has so that I can get to the paradise at it's peak. Here ...
0
votes
1answer
40 views

Simple Ember.js Relationships

I'm new to ember.js and I'm struggling a bit with setting up relationships between Ember Data Objects. Sorry I haven't done my google-due-diligance - I'm still so new to it that I don't even know what ...
1
vote
2answers
35 views

How can I empty a named outlet in Ember?

I've got a named outlet in my application template, which I'm using for modal (popup) views only. By default I want this to be an empty, unused outlet, as only about 5% of my routes will involve a ...
0
votes
0answers
24 views

how to redraw views (animation) on some action with the Ember way?

I'm trying to figure out the best way (the Ember way) to animate views when some action occurs. The question is: how to handle events? Should it be done with Evented mixin or via bindings? I found ...
0
votes
1answer
44 views

Problems with the Intro app video for ember.js?

I am watching the Bulding an app with ember.js (the intro 30 minute video) and I am having an issue with the date function with moment. Ember.Handlebars.registerBoundHelper('date', function(date) { ...
0
votes
1answer
55 views

Not possible to use the latest ember with pre-compiled templates

I have just installed the latest ember starter kit. It has: Ember.VERSION : 1.0.0-rc.5 Handlebars.VERSION : 1.0.0-rc.4 jQuery.VERSION : 1.9.1 I am using grunt-contrib-handlebars@0.5.9 to ...
1
vote
1answer
49 views

Limit the results of {{#each a in b}}

I have a Model called Course that has an array variable called users. Is there a way to just limit the results of, let say, IDs from users rather than the {{#each}} rendering every single id? Such ...
0
votes
0answers
10 views

compile templates in Ember-Dev

I am trying to create a plugin using ember-dev. I want to release the templates pre-compiled with the source. At the moment I am only able to pre-compile inline templates like this: distros = { ...
0
votes
1answer
60 views

Ember.js : how to bind a model attribute on a custom component

I would like to integrate a date picker in a form. So I created a custom DateTimePickerView like this : App.DateTimePickerView = Em.View.extend templateName: 'datetimepicker' didInsertElement: ...
1
vote
2answers
36 views

Ember: how do you access the model from the router?

Based on what I've read (please correct me if I'm mistaken), the logic that handles when a model should be saved and where to transition next should be in the router. If that is the case, I'm running ...
1
vote
1answer
64 views

DOM Exception 9 when inserting SVG element with Ember/Handlebars

I have a problem using Ember/Handlebars with SVG elements: Controller: display: function() { this.set('isDisplayed', true); } Template: <button {{action display}}>Display</button> ...
1
vote
1answer
97 views

ember.js .find() only works when called 2nd time

Main goal: Using .find() to access a model other than the one available in the current controller -in order to compare data from the current controller's model with a piece of data from a 'foreign' ...
1
vote
1answer
14 views

Auto commit sideloaded changes on other records with ember-data

I have a application where a User has one Team. I am on the form where you create a new team. When I create a team, my api returns the json of the new team and also returns some json of its owner ...
0
votes
2answers
26 views

Simple ember routing - how to define multiple routes?

Ok guys- It really shouldn't get simpler than this. I defined a route named about and added a linkTo about in my template, ran it through the outlet and ember works as expected. I then added another ...
0
votes
0answers
13 views

Setting id in ember data with createRecord

If I try to create a record with something like var myObject = App.ModelName.createRecord( data ); myObject.get("transaction").commit(); the id of myObject is never set. This says that id ...
0
votes
0answers
17 views

Duplicate record when refreshing on route with ember (using attribute in url)

I am using an attribute called 'slug' to generate friendly id routes in ember. I have everything working nicely, except for a strange bug when refreshing on the singular resource route. So if I go to ...
0
votes
0answers
16 views

ember register inject singleton

Trying to understand better about ember's register and inject. Basically my code looks like this: //creating a service Nerdeez.Wormhole = Ember.Object.extend({ ... }) //registering this service as a ...
0
votes
1answer
25 views

Ember.js and Canvas

Hi how I get the canvas '2d' context in an Ember View? The following Code doesn't work. I get the canvas element of dom, but not the context of '2d'. App.Canvas = Ember.View.extend({ tagName: ...

1 2 3 4 5 84