I am building my first app with Backbone.js and really like it so far. The documentation is a bit out of date and spread out, but so far I could solve all problems I ran into. One thing I am wondering since I read the first tutorial, though: how should a view's "el" be handled? It has to be set, otherwise events don't fire (see here).

But should it be a element that is already on the page? In my app I render a (jQuery Templates) template into a Fancybox. What should the "el" be in that case?

None of the tutorials or introductions I read picked up on that...

Thoughts and comments welcome...

link|improve this question

63% accept rate
feedback

3 Answers

A views el is where all the event binding takes place. You don't have to use it but if you want backbone to fire events you need to do your rendering work on the el. A views el is a DOM element but it does not have to be a pre-existing element. It will be created if you do not pull one from your current page, but you will have to insert it into the page if you ever want to see it do anything.

An example: I have a view that creates individual items

window.ItemView = Backbone.View.extend({
    tagName: "li", //this defaults to div if you don't declare it.
    template: _.template("<p><%= someModelKey %></p>"),
    events: {
        "click": "someFunctionThatDoesSomething" //this event will be attached to the model elements in the el of every view inserted by AppView below
    },
    initialize: function () { 
        _.bindAll(this, "render");
        this.render(); },
    render: function () { this.el.innerHTML = this.template(this.model.toJSON()); return this; }
});
window.AppView = Backbone.View.extend({
    el: $("#someElementID"), //Here we actually grab a pre-existing element
    initialize: function () { 
        _.bindAll(this, "render");
        this.render(new myModel()); },
    render: function (item) { 
        var view = new ItemView({ model: item });
        this.el.append(view.render().el);
    }
});

The first view just creates the list items and the second view actually places them on the page. I think this is pretty similar to what happens in the ToDo example on the backbone.js site (http://documentcloud.github.com/backbone/docs/todos.html). I think convention is to render you content into the el. So the el serves as a landing place or a container for placing your templated content. Backbone then binds its events to the model data inside of it.

When you create a view you can manipulate the el in four ways using el:, tagName:, className:, and id:. If none of these are declared el defaults to a div without id or class. It is also not associated with the page at this point. You can change the tag to something else by using using tagName (ex tagName: "li", will give you an el of <li></li>). You can set the id and class of el likewise. Still el is not a part of your page. The el property allows you to do very fine grain manipulation of the el object. Most of the time I use an el: $("someElementInThePage") which actually binds all the manipulation you do to el in your view to the current page. Otherwise if you want to see all the hard work you have done in your view show up on the page you will need to insert/append it to the page somewhere else in your view (probably in render). I like to think of el as the container that all your view manipulates.

link|improve this answer
Thanks for the clarification and the example! I think it is not always clear what the el should be in certain situations and the developer has to get a "feel" for it. Your explanations certainly helped! One question, though: you don't define an el in your ItemView, but you access it in the render function. Will this work? Is there some kind of default el if you don't explicitly define it? – zoopzoop Apr 23 '11 at 7:48
1  
By default el is a "div" tag with no id or class. It is a DOM object not bound to your page DOM. Usually I insert/append it to the page in the render function or the render function of a parent view. – LeRoy Apr 23 '11 at 15:42
Updated my answer with some description of the properties that define the el. – LeRoy Apr 23 '11 at 20:43
I guess my only issue with grabbing a pre-existing element with el: $("#someElementID") is your view probably knows more than it should, making it difficult to reuse it. see "Decouple view from DOM..." coenraets.org/blog/2012/01/… – scoarescoare May 4 at 16:02
feedback

It has to be an element on the page.

The contents of the parsed template will be inserted into the element specified,
the element is not created

link|improve this answer
"It has to be an element on the page." Yes, that is what it says in every tutorial and what got me confused in the first place. What if the template I want to render is not connected to any element that is already on the page? Should I create an empty element just to reuse it later? Or for example take the "body" element, which has nothing to do with the kind of content I want to render? – zoopzoop Apr 13 '11 at 19:14
"The contents of the parsed template will be inserted into the element specified" Nope, that is not correct. In the "render" method you can decide yourself what to render where, you are not forced to use the el. – zoopzoop Apr 13 '11 at 19:15
Thanks, will look again at the documentation :) – James Kyburz Apr 13 '11 at 19:34
1  
This is sort of the opposite of how it works. The el does not have to be an element in the page and it will be created if it doesn't exist it just will not appear on the page unless inserted. – LeRoy Apr 23 '11 at 15:44
feedback

You want your 'el' to reference an element that contains a child element that has any event that triggers a change in your view. Could be as wide as a "body" tag.

link|improve this answer
Hmm, that doesn't really clear it up either. Most of the times the elements that could trigger a change in my view are inside the template the view renders, so before it is rendered these elements don't exist yet. – zoopzoop Apr 13 '11 at 19:17
feedback

Your Answer

 
or
required, but never shown

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