Tagged Questions

Ember.js is an advanced HTML5 application framework formerly known as SproutCore 2.0 (and briefly as Amber.js). It follows the MVC pattern, and code is written in javascript. The core is derived from SproutCore 1.x. When first announced Ember.js was called SproutCore 2 it was then renamed to ...

learn more… | top users | synonyms

8
votes
3answers
409 views

Proper procedure for using sproutcore-routing

Curious about the proper procedure, or at least common procedure for using sproutcore-routing. In the read me there it shows this basic example for routing: SC.routes.add(':controller/:action/:id', ...
7
votes
1answer
377 views

How to write modular Ember.js apps

Is there any guidance on how to write modular Ember.js apps? I have seen Tom Dale's position on AMD here so I am not going to force fit AMD on to the framework (as some have attempted here). It ...
5
votes
2answers
506 views

Sortable list using Ember.js and jQuery.ui

I am struggling to get a list created by Ember.js sortable using jQuery.ui. The controller looks like this: App.ThingyController = Ember.ArrayController.create content: [ { name: 'Item1' }, ...
5
votes
1answer
192 views

How do I make a computed, filtered property?

I've got something like this: Epic = Ember.Object.extend({ children:[], children_filtered: function(){ return this.get("children").filterProperty("archived",false); ...
5
votes
1answer
314 views

Concerning the Typical Behavior of Controllers in Ember

Are controllers in ember.js meant to be tied to main view areas/scenes a la iOS, or more tied to a set of data? Is it common/wise to have several main views tied to the same controller in ember? In ...
5
votes
4answers
1k views

Ember.js & REST API

From all the various examples of Ember.js, I have not been able to figure out if there is a default method in Ember.js to do REST AJAX calls. Many examples build their own interfaces for CRUD ...
4
votes
1answer
261 views

What's the purpose of ArrayController and ArrayProxy?

I've been digging into EmberJS for one day :). I've followed several examples. Some examples used ArrayProxy while others used ArrayController. I looked at the unminified source code and..guess ...
4
votes
1answer
149 views

Sorting a list in EmberJS and having that reflect in the view

I have a computed property that should sort & fiter like so: sortedFilteredChildren: function() { console.log("sortedFilteredChildren()"); var filtered = ...
4
votes
3answers
454 views

Ember model to json

I am looking for an efficient way to translate my Ember object to a json string, to use it in a websocket message below /* * Model */ App.node = Ember.Object.extend({ name: 'theName', type: ...
4
votes
1answer
646 views

Ember.js: How do I access a specific item in a CollectionView?

First off I want to say that I really like ember.js. I have tried both Knockout and Angular but found them a bit to obtrusive and everything had to be done their way. I feel like ember allows me a bit ...
4
votes
1answer
617 views

Ember.js + Handlebars custom helper

I'm trying to implement a simple conditional statement in Handlebars that changes based on an attribute in my controller. I've managed to come up with; ...
3
votes
3answers
275 views

Easy way to precompile Emberjs Handlebar templates with nodejs?

I'm enjoying emberjs a lot and would like to take the next step in a couple of my small, mobile apps and precompile my Ember/Handlebars templates as part of my build process. I'd prefer to stay away ...
3
votes
3answers
370 views

select dropdown with ember

I'm trying to produce a select input and pass the selected object to the change event on the view. The ember contact example uses a <ul> but with a select the view needs to be outside the each ...
3
votes
1answer
398 views

optimal view structure with Ember.js for a mobile application

Lately I have been building a mobile phone application using Sproutcore20 and now Ember.JS. This works great on my iPhone (3GS) though it stutters on many android devices. The simplest thing, like ...
3
votes
2answers
529 views

Setting up rake-pipeline for use with handlebars alongside Google App Engine

So here's what I'm attempting to do. I'm building an ember.js application, with a java backend running on GAE. I'm using handlebars, but I want them divided up into separate files, not just all ...
3
votes
4answers
309 views

Calling a method on a function definition in coffeescript

How would you translate this snippet of javascript to coffeescript? Specifically I'm struggling with how to call .property() on the function definition. MyApp.president = SC.Object.create({ ...
3
votes
2answers
706 views

How to use Sproutcore 2.0 with Twitter bootstrap dropdown menu

I create topbar menu using twitter-bootstrap and It working fine .topbar .topbar-inner .container-fluid {{#view Mediawrap.menuView id="menuView"}} = link_to 'Mediawrap', root_path, ...
3
votes
3answers
443 views

Writing custom controls in Sproutcore 2

I'm fairly new to Sproutcore, but I am familiar with Handlebars. I have walked through the Todo tutorial and checked out a few other samples as well. I love everything about it and would like to use ...
2
votes
1answer
27 views

Differences between Sproutcore and Ember

I had selected sproutcore as a framework right before Ember forked from sproutcore. I am left uncertain of which way to go and a bit frustrated in the apparent dilution of efforts caused by the ...
2
votes
1answer
65 views

Can't run Ember.js in a page that has prototype.js

When prototype.js loaded in the same page of ember Ember's initialization flow is distrupted and the internal Ember objects (Application, View etc) are undefined. See sample project at ...
2
votes
2answers
156 views

Sort array of EmberJS objects by property

I noticed this on the EmberJS website under Filtering: Another common task to perform on an Enumerable is to take the Enumerable as input, and return an Array after sorting or filtering it ...
2
votes
2answers
274 views

Ember.js: Where is the “start” button?

I'm used to thinking about a single-page application startup happening like this: 1. Bootstrap some data into critical models, 2. Instantiate a master controller, and 3. Call it's render() method to ...
2
votes
1answer
409 views

Overview of the Ember.js code

I have discovered Ember.js through this article. A cursory glance at the documentation promises a very impressive tool. A cursory glance at the source code reveals a monster. The "compiled" version ...
2
votes
1answer
460 views

Using Ember.js, how do I run some js after a view is rendered?

I'd like to run a function after an Ember view is added to the DOM but can't figure out how. Here's my use-case: I'd like to use jQuery UI sortable to allow sorting. My app has multiple multi-level ...
2
votes
1answer
171 views

How to turn nested plain js objects into Ember.js objects?

If I have a nested set of plain old javascript objects (for example, having been returned from JSON), how do I them into Ember.js objects (or at least getting the binding functionality working)? For ...
2
votes
2answers
76 views

Writing a helper that produces bound results?

I have a date/time formatting helper but what it produces does not update when the underlying property changes. This is not a surprise, but does anyone know how to produce bindings in helpers? I ...
2
votes
1answer
262 views

Ember.js adding and removing views from the DOM?

I am looking into ember.js, after working with SproutCore 1 previously. I am looking for some examples on how to add and remove views from the DOM as the user navigates the application. For ...
2
votes
2answers
133 views

Does Ember support localization like SC 1.x

We were able to easily localize SC app with the strings table and sc-build did a good job of building out the different lang directories with the right localized files. Does Ember provide these? thx
2
votes
2answers
154 views

EmberJS Set Multiple Properties At Once

I am setting lots of properties with a series of set calls e.g. this.set('prop1', value1); this.set('prop1', value1); ... Is there a way to do this in one call (similar to when I create an object)? ...
2
votes
1answer
355 views

EmberJS, EmberJS/Data and Sproutcore-Datastore

With the move from SproutCore 2.0 to EmberJS there was the namespace and Github repo migration. Core things seem to have moved to the http://github.com/emberjs organization Github account while there ...
2
votes
1answer
240 views

Trigger an action in a text field from a button

I'm looking for advice on how to trigger this view function insertNewLine from a button (see view and template below). I'm guessing there's probably a better way to structure this code. Thanks for ...
2
votes
1answer
315 views

How to prevent ember.js change the structure of the template?

I'm using ember.js 0.9.2 (but this issue also occurs in HEAD revision) and it is changing my template's markup structure. I have a template like this: <script type="text/x-handlebars" ...
2
votes
3answers
539 views

Does Ember.js support loading external file view templates?

I'm new to Ember/Sproutcore... From what i could find in SproutCore documentation, SC.TemplateView supports loading handlebar template from external files. Does this functionality exist in Ember?
2
votes
2answers
479 views

Templating a table with ember.js not working with JSON call

I've got an index page that lists taxes in a table. I'm trying to implement this with ember.js following some of the code in the contacts example app. Here is the gist: ...
2
votes
2answers
164 views

Combining and Compressing multiple JavaScript files into a single file in a Django project

What is the simplest way to combine JavaScript files into a single file in a Django project? Explanation I want this to work with Ember.js/Backbone where you (usually) have many different ...
2
votes
2answers
640 views

Ember.js binding models stored within an array

What is the 'correct' way to bind from one model to another when the models are stored within an array? Typically I'd imagine that this would be a Controller's content array, but to keep the example ...
2
votes
1answer
674 views

ember.js widgets

I know that ember js is good for single page apps and it appears that you can localize ember js app to a single dom container rather than the whole page, so I'm wondering if ember js would be a good ...
2
votes
3answers
266 views

Sproutcore 1.6 or 2.0

I'd like to start developing a new project using sproutcore. Since 2.0 seems quite different to 1.6 and there are already three betas out (and so I expect and RC soon?) I wonder if it'd be a good ...
2
votes
1answer
151 views

Are Recursive Collections possible in sproutcore2?

I have a customizable navigation tree that can be nested 3 levels deep. Templates: <script type="text/x-handlebars" data-template-name="NavItemView"> <a {{bindAttr href="href" ...
1
vote
1answer
32 views

Get Ember View from jQuery object

I know how to construct a jQuery object from an Ember view that is in the DOM: App.myView = Ember.View.extend({ elementId: "my_view", didInsertElement: function(){ ...
1
vote
1answer
43 views

With ember-data is there a method for querying locally available objects?

I have created a model that is populated locally on the client, upon initializing the application. The findQuery method always does an ajax request, for example: App.store.find(App.Person, {name: ...
1
vote
1answer
56 views

how to update filtered list view by binding filterProperty to certain value

I have a list which based on certain properties returns a sub list. Is it possible to bind this property with outside control, so when it is set, the filtered list view can refresh itself. Right now ...
1
vote
1answer
41 views

Emberjs - Get attribute of element clicked

Question: Upon click, I see that evt.target.attributes stores all of the attributes in an array. Is there an easier way without having to iterate all of the attributes to get a certain attributes ...
1
vote
2answers
88 views

Has Ember.js any add-on to route a request?

Other frameworks like Backbone has got a router component
1
vote
1answer
137 views

Alternative To Associations with EmberJS/Data

I've been working on an EmberJS application for about a week now, and have written my own localStorage adapter for EmberJS/Data to allow for data persistence. The app is a small note-taking ...
1
vote
1answer
63 views

Ember.js helper not properly recognizing a parameter

I'm trying to get used to Ember.js and Handlebars, but one problem is puzzling me. I'm probably just missing something, but has been on it for quite a while and could not find anything wrong. I have ...
1
vote
2answers
305 views

how to pick the right Javascript MVC framework? [closed]

I am new to javascript and trying to figure out a good JS MVC framework to use I am trying to figure out how to compare and contrast the Javascript MVC frameworks that have been famous recently in ...
1
vote
2answers
89 views

How can an observer find out the before and after values of the observed property in Ember.js?

Please see the solution to another question provided by ud3323: http://jsfiddle.net/ud3323/ykL69/. This solution highlights the changed value using the red color. I have an additional requirement: if ...
1
vote
1answer
67 views

#collection using contentBinding does not automatically update when rendering in a tbody

I'm new with emberjs so it may be possible that I totally missed a few things. I am trying to render the body of a table with content I retrieve from an Ajax request. I use an ArrayController and a ...
1
vote
1answer
95 views

Why does this Ember.js app fail in Firefox?

I have a very simple Ember.js app which works correctly in IE and Chrome, but fails in Firefox (9.0.1 and 10.0). Any reason why? Here's the code: <!doctype html> <html> <head> ...

1 2 3 4