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 5981497
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T21:57:08+00:00 2026-05-22T21:57:08+00:00

I have a case that uses view inheritance, and my code looks essentially like:

  • 0

I have a case that uses view inheritance, and my code looks essentially like:

parentView = Backbone.View.extend({
    events: {
        "some event": "business"
    },
    initialize: function(){
        _.bindAll(this);
    },
    business: function(e){
        ...
        this.someFunc && this.someFunc();
        ...
     }
});

childView = parentView.extend({
    events: {
        ...
    },
    constructor: function(){
       this.events = _.extend( {}, parentView.prototype.events, this.events );
       parentView.prototype.initialize.apply( this );
    },
    initialize: function(){
       _.bindAll(this);
    },
    someFunc: function(){
       ...
    }
});

Update: Moved this.events extension to the constructor.

My child view has someFunc in it, and during some business function in the parent view, it should call that function if it exists. If this is properly set to the childView, then this.someFunc should exist. This, however, is not the behaviour that I am experiencing.

During the initialize function (in the parent), this is indeed set to the child view. However, when some event fires, the business function is called with this set to parentView.

  • 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-22T21:57:08+00:00Added an answer on May 22, 2026 at 9:57 pm

    Have you tried extending this.events in the constructor, instead of in the initialize function? If you do this in initialize, you’re too late; event delegation for the business function has already been setup in the constructor, and will point to parentView (see the call to this.delegateEvents(); in Backbone.View’s constructor).

    Updated with a working example:

    ParentView = Backbone.View.extend({
        name: 'ParentView',
        events: {
            "event": "business"
        },
        business: function(e){
            this.someFunc && this.someFunc();
        }
    });
    
    ChildView = ParentView.extend({
        name: 'ChildView',
        events: {
        },
        constructor: function(){
           this.events = _.extend( {}, ParentView.prototype.events, this.events );
           console.debug( this.events );
           ParentView.prototype.constructor.apply( this, arguments );
        },
        someFunc: function(){
            console.debug('someFunc; this.name=%s', this.name);
        }
    });
    
    child = new ChildView();
    $( child.el ).trigger('event');
    // logs 'this' in 'someFunc'; the name is 'ChildView'.
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a View in microsoft sql server management studio that uses the code
I have an odd edge case right now in that a response code from
I have some SQL that does an order by case statement. It works fine.
I have an iphone app that uses table view as the interface. Each time
I have a list view class that just like NSCollectionView requires an additional prototype
I have a case that keeps coming up where I'm using a ListView or
We have a business case that would be perfect for multiple BackgroundWorkers. As an
I have a Selenium test case that enters dates into a date selector made
I am trying to learn Microsoft MVC 2, and have in that case found
I have a case where I wanna choose any database entry that have an

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.