Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a series of buttons which when clicked display a popup menu positioned just below the button. I want to pass the position of button to the view. how can I do that?

ItemView = Backbone.View.extend({
    tagName: 'li',
    events: {
        'click': 'showMenu'
    },
    initialize: function() {
        _.bindAll(this, 'render');
    },
    render: function() {
    return $(this.el).html(this.model.get('name'));
    },
    showMenu: function() {
        var itemColl = new ItemColl();
        new MenuView({collection: itemColl}); // how to pass the position of menu here?
    }
});
share|improve this question

3 Answers

up vote 58 down vote accepted

You just need to pass the extra parameter when you construct the MenuView. No need to add the initialize function.

new MenuView({
  collection: itemColl,
  position: this.getPosition()
})

And then, in MenuView, you can use this.options.position.

share|improve this answer

Add an options argument to initialize:

initialize: function(options) {
    // Deal with default options and then look at options.pos
    // ...
},

And then pass in some options when you create your view:

var v = new ItemView({ pos: whatever_it_is});

For more information: http://backbonejs.org/#View-constructor

share|improve this answer
very useful link! – Ioana Marcu Jul 19 '12 at 8:51
this is more elegant/simple for most of the situations. – Cullen SUN May 20 at 4:46
@CullenSUN: Thanks. I prefer the explicitness of this approach, the magical "action at a distance" of using this.options gives me maintenance and debugging nightmares. – mu is too short May 20 at 4:55

pass from other location

 new MenuView({
   collection: itemColl,
   position: this.getPosition()
})

Add an options argument to initialize in view you are getting that passed variable,

initialize: function(options) {
   // Deal with default options and then look at options.pos
   // ...
},

to get the value use -

   var v = new ItemView({ pos: this.options.positions});
share|improve this answer
write improved answers not collective. – konga raju Dec 28 '12 at 7:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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