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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T02:00:52+00:00 2026-05-27T02:00:52+00:00

I am a backbone.js n00b and am having trouble understanding how to extend a

  • 0

I am a backbone.js n00b and am having trouble understanding how to extend a view. I have a basic “item” model and view. I’d like to extend both the model and view to be “specificItem.” Is there a way to add events in the extended view rather than just replace them all?

Item View:

var itemView = Backbone.View.extend({
   ...
   events: {
      "click" : "foo"
      , "dblclick div": "bar"
   }
   ...
});

Specific Item View:

var specificItemView = itemView.extend({
   ...
   // I'd like this to simply add an event handler not replace the ones defined above
   events: {
      "contextmenu" : "baz"
   }
   ...
});

Is it even supported to extend views in this way or can we only do that to models?

  • 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-27T02:00:52+00:00Added an answer on May 27, 2026 at 2:00 am

    If I’m not mistaken extend does not work recursively, but you can do it yourself. I think something like this should work:

    var specificItemView = itemView.extend({
       ...
       // I'd like this to simply add an event handler not replace the ones defined above
       events: _.extend({
          "contextmenu" : "baz"
       }, itemView.prototype.events),
       ...
    });
    

    Here is the proof, that extend does not merge recursivly

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a backbone view that calls to a sub-view: lr.MapView = Backbone.View.extend({ el:
I have a Backbone view with a model. Additionally I have a global model
I'm using Backbone.js have a segmented control-type UI element for each model's view. They
Newbie backbone question: Context: Building a shopping list with backbone I have a model
I have a backbone view - which when called presents a form $('#add-offer').click(function() {
I have a backbone-Model. With model.set() I can set a local value, with model.save()
My backbone.js model has a json object in defaults like this: test: { testArr:
In backbone it seems that I have to get model attributes via model.get('att_name') I'd
Using Backbone.model, I would like to change the get method in order to get
I just upgraded my Backbone to 0.9.2 and when I do a view.remove() like

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.