Ember.js is an advanced HTML5 MVC application framework written in JavaScript.
0
votes
0answers
9 views
entity with possible changing IDs in ember data
First of all, what I'm using:
Ember-data revision: 12 (RESTAdapter)
Ember version: 1.0.0-rc.3
I looked a lot on Google and here before posting, and couldn't find anything like my situation.
I have ...
0
votes
0answers
17 views
How to upload image ,save in db and retrieve from db using ember.js and MVC4
I'm new to Ember.js and i'm trying to do something I need to upload image in my webapp and need to save the image in the db and retrieve it from db how can I do that
0
votes
1answer
24 views
Displaying items in Array Controller ember.js
I'm following the official TodoMVC tutorial from Ember.js website. Everything works until the step to display model data: http://emberjs.com/guides/getting-started/displaying-model-data/
The error ...
0
votes
0answers
9 views
Rendering the same view/controller via a different route
I have a view (and controller) in my application in which it makes more sense to set a "editingMode" boolean to true, in order to put it into edit mode.
While editing, I want to show a couple ...
1
vote
1answer
46 views
RSVP is not chaining 'then' properly
Am I doing something wrong? According to the documentation RSVP.all is supposed to return a promise. And all promises support chainable 'then's. In this example: http://jsbin.com/epuxod/3/edit the ...
0
votes
1answer
20 views
Ember.js REST adapter handling different JSON structure
I'm using REST adapter, when I call App.Message.find() Ember.js makes call to the /messages to retrieve all messages and expect to see JSON structure like this:
{
"messages": [] // array contains ...
1
vote
0answers
18 views
Ember.js Add/Remove Checkbox in edit mode
So I've been digging more into Ember.js (first time in javascript) and I've got to a point where I want to be able to add/remove a users checkbox selection when they go into edit mode. So for my ...
1
vote
0answers
11 views
Reacting on a finished Ember Data hasMany query
I use Ember 1.0.0-RC3 with Ember Data. I have the requirement to react efficiently when a hasMany relationship has been loaded successfully.
My domain model looks conceptually like this:
App.Person ...
0
votes
0answers
10 views
handling acts_as_tree or ancestry-like data in ember
I have an app that is like this:
Menu
MenuHeader - 1
MenuHeader - 2
MenuHeader - 3
MenuHeader - 4
MenuHeader - 5
MenuHeader - 6
MenuHeader - 7
I was thinking the ...
0
votes
0answers
14 views
In Ember how can one view be altered when another view is selected?
I'm just starting with Ember and have run into an issue. I'm sure the solution is simple but I can't seem to figure it out! I have several views, when the user clicks in one view I want that view to ...
0
votes
0answers
21 views
Ember copy and paste URL not working correctly
I just switched from Ember Data to Ember Model. Im having issues when i copy and paste a URL. A nested resource works like it should but a nested route does not.
Im my application route i have a ...
1
vote
0answers
22 views
Best design pattern to manage REST/JSON backend without embers data
I need to design a "production" Ember.js app.
If I'm correct, ember data is still not ready for production.
I need to know what it the best practice to manage the JSON backend
I'm quite lost with the ...
0
votes
1answer
25 views
Ember Object not setting linkTo using ember-model
I have an array of objects from my controller. I can display the properties but the linkTo object is not being set
Im also using ember-model not ember-data
Msmapp.ClassroomsRoute = ...
0
votes
1answer
27 views
How to create and manage a Twitter Bootstrap Modal with Ember.js
I was able to get a nice bootstrap modal to show / hide properly and display a msg stored on the modal controller as demonstrated here:
Ember Bootstrap Modal Example
Relevant code {
// context
...
0
votes
1answer
30 views
Access a global variable from any app controller
I need to use a global variable (user context, available from all the code)
I have read some posts regarding this topic but I do not have a clear answer.
App = Ember.Application.create({
...