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 instance, I have an application that contains a set of cases and each case has a workflow. There are also administration pages, etc.

When the user starts up the app, a dashboard-like user interface is shown. From here the user is able to search or click on a case in order to bring up that case. At this point I want to do the following:

  • I want to remove the GUI for the Dashboard, and i want to show the GUI for the case - which is a complex GUI in itself with its own set of navigation rules etc.
  • Also, within the case I want to add and remove portions of the GUI as the user navigates and manipulates the case.
  • When the user clicks on the "Dashboard" link, I want the current GUI to be removed, and the dashboard to be added again.

As this will be a somewhat large application I am not sure if toggling the isVisible parameter is sufficient, or if other measures needs to be taken in order to not overload the user's browser.

Is there a guide, or an example that shows how to do this ?

link|improve this question

44% accept rate
You should look at the code for ember-states. – Roy Daniels Jan 10 at 2:07
1  
ud3323: Thanks, I have, but that leaves two questions: 1. How do I add and remove childViews, and 2. where in the code do I say MyApp.statemanager.create() ? Putting that code inside Ember.Application.create({ready: function({ //here })});, seems to load the statechart just before the views that are created in my index.html. – Joachim H. Skeie Jan 10 at 8:44
The one of the big differences between the old SC 1.x statecharts and the new ember-states is ViewStates. Basically it handles add/removal of views within your statechart. As for your other question, when you call Ember.StateManager.create that should initialize the statechart and enter your initial state for you. – Roy Daniels Jan 10 at 14:22
I just noticed ViewStates, just before reading this comment, and I must say, they are vey nice indeed!. In case someone else is looking for how to use them, I found this JSFiddle: jsfiddle.net/pangratz666/Y7dqt – Joachim H. Skeie Jan 10 at 17:16
1  
@Rajat I have updated your jsFiddle: jsfiddle.net/joachimhs/GyZgy/4 Is this what you are asking ? – Joachim H. Skeie Apr 26 at 21:51
show 2 more comments
feedback

1 Answer

A view inherits from Ember.View which means it gets some key methods. append(), which appends to body, appendTo(arg) which takes an argument and remove().

The argument is a jQuery style selector of where to insert the element in the DOM.

// my view
App.PartsView = Ember.View.extend({
    ...
});


// create/insert my view
App.partsView = App.PartsView.create();
App.partsView.appendTo('#partcontainer');

In my code I have a <div id="partcontainer"></div>.

// remove from DOM
App.partsView.remove();

The documentation has a good part on Building a View Hierarchy and later a section on Ember.ContainerView depending on whether you want to do it all programatically or not.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.