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.

Lets say I have a list of boys and girls names. This collection of names also has a 'Gender' property.

I want to put a 'SelectedGender' attribute on either the Collection or the View so that I can fire a custom event only when the Selected gender changes.

Can a View be extended to have a attribute that fires a change event?

Can a Collection be extended to have a attribute that fires a change event?

Or am I forced to create another Model that contains a collection? I don't actually have code I'm just thinking design at this point.

share|improve this question

2 Answers

up vote 3 down vote accepted

To answer your question: Can a view or collection be extended to have an attribute that fires a change event, the answer is no and yes.

No, you can't do view.set({attr: value}) or collection.set({attr: value})

You can, however have a view or collection fire events by extending Backbone.Events.

YourView = Backbone.View.extend({});
_.extend(YourView, Backbone.Events);

var view = new YourView();
view.bind('SelectedGenderChanged', function() {
  console.log('SelectedGenderChanged event fired!');
});

//somewhere else in your code
view.trigger('SelectedGenderChanged');

However, there might be a better way to design this.

If the selected gender changes when a user makes a selection from a combo box, then you can subscribe to the combo box change event in your view, and then have your view make any changes that need to be done at that time.

share|improve this answer
Thanks. Looks like what I really need to do is create Wrapper models for my collections and then I can put the properties on those. – ctrlShiftBryan Jan 6 '12 at 15:24

I don't think you need to create wrapper models for your collections. Just create a model that stores the name and the gender. Then, like @Paul mentioned, you can subscribe to the change event in the collection or in the view.

nameModel = Backbone.Model.extend({
  defaults: function() {
    return {
      name: "Andy"
      , gender: "male"
    };
  }
});

nameCollection = Backbone.Collection.extend({
  initialize: function (args) {
    var self = this;
    self.model.bind("change:gender", function () {
      self.changeGender(self.model.get("gender");
    });
  }

  , changeGender: function (gender) {
    // modify your collection somehow
  }
});

nameView = Backbone.View.extend({
  initialize: function (args) {
    var self = this;
    self.model.bind("change:gender", function () {
      self.changeGender(self.model.get("gender");
    });
    // in case you have a checkbox or something you want to bind the model change to:
    self.$(".genderCheckbox").bind("change", function (ev) {
      self.model.set( { gender, self.$(".genderCheckbox").val() });
    });
  }

  , changeGender: function (gender) {
     // Modify your view here
  }
});

EDIT:

Rather than having 2 seperate collections depending on the gender of the name, why not have one collection of names with a method that returns just the boy names and a method that returns just the girl names?

ie:

getMaleNames: function() {
  return this.filter(function(name){ return name.get('gender') == "male"; });
}
share|improve this answer
I'm not actually changing the gender on the individual model. In your example Andy will always be male. I might change the selectbox to Andrea, a female. The answer I was looking for was 'to add an attribute that fires event change to a collection you have to wrap it in a Model.' I could just create another Model and use 2 models on the view but wrapping the collection worked best for me. – ctrlShiftBryan Jan 6 '12 at 16:06
In this example the default model will be male, but anytime you want to change the gender you can easily do so by issuing model.set({gender:"female"}). Both the view and collection have access to the model. See the event on self.$(".genderCheckbox"). That would set the gender attribute on the model to female, in your example, and the attribute change would thus fire the change event which would call collection.changeGender and view.changeGender. Does that make sense? – stinkycheeseman Jan 6 '12 at 16:29

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.