Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7012501
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T22:15:50+00:00 2026-05-27T22:15:50+00:00

How can I know which attribute of the view model is changed in the

  • 0

How can I know which attribute of the view model is changed in the render function? (In the render function, “e” is the model, but I need only the attribute which is changed.) I need to know this to know which template to use. Or is there another method to do this?

window.Person = Backbone.Model.extend({});

window.Njerzit = Backbone.Collection.extend({
    model: Person,
    url: '/Home/Njerzit'
});

window.PersonView = Backbone.View.extend({
    tagName: 'span',

    initialize: function () {
        _.bindAll(this, 'render');
        this.model.bind('change', this.render);
    },

    render: function (e) {
        //if model name is changed, I need to render another template
        this.template = _.template($('#PersonTemplate').html());
        var renderContent = this.template(this.model.toJSON());
        $(this.el).html(renderContent);
        return this;
    }
});
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T22:15:51+00:00Added an answer on May 27, 2026 at 10:15 pm

    I believe the changedAttributes function is what you’re looking for

    changedAttributesmodel.changedAttributes([attributes])
    Retrieve a hash of only the model’s attributes that have changed. Optionally,
    an external attributes hash can be passed in, returning the attributes
    in that hash which differ from the model. This can be used to figure
    out which portions of a view should be updated, or what calls need to
    be made to sync the changes to the server.

    or to check if a specific attribute has changed use the hasChanged function

    hasChangedmodel.hasChanged([attribute])
    Has the model changed since the last “change” event? If an attribute is passed, returns true
    if that specific attribute has changed.

    var nameChanged = this.model.hasChanged("name");
    
    • From Backbone Docs
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I like how this works in Zend Framework. I can know which environment I'm
I get a protected memory exception, but how can I know which call caused
I have a Django project. Given a url, how can I know which view
How can I know which machines are alive on the same LAN as my
How can I know which stored procedure is running in SQL Server 2005. And
From code how can we know which interfaces one class implements? Example: interface IDrink
Me stupid. How can I know which assembly to reference if I just know
I have a git repository with multiple branches. How can I know which branches
How can I know under which IIS version my web application is running in
How can I know during parsing which rule is currently matched? I'd like to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.