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

  • Home
  • SEARCH
  • 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 7622781
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T04:32:21+00:00 2026-05-31T04:32:21+00:00

Is there a straightforward way to insert a new model item into the middle

  • 0

Is there a straightforward way to insert a new model item into the middle of a backbone.js Collection and then update the collection’s View to include the new item in the correct position?

I’m working on a control to add/delete items from a list. Each list item has its own Model and View, and I have a View for the entire collection as well.

Each item view has a Duplicate button that clones the item’s model and inserts it into the collection at the index position below the item that was clicked.

Inserting the item into the collection was straightforward, but I’m having trouble figuring out how to update the collection view. I’ve been trying something like this:

ListView = Backbone.View.extend({
    el: '#list-rows',
    initialize: function () {
      _.bindAll(this);
      this.collection = new Items();
      this.collection.bind('add', this.addItem);
      this.render();
    },
    render: function () {
      this.collection.each(this.addItems);
      return this;
    },
    addItem: function (item) {
      var itemView = new ItemView({ model: item }),
          rendered = itemView.render().el,
          index = this.collection.indexOf(item),
          rows = $('.item-row');

      if (rows.length > 1) {
        $(rows[index - 1]).after(rendered);
      } else {
        this.$el.append(rendered);
      }
    }
}

This implementation is sort of working, but I’m getting strange bugs when I add a new item. I’m sure I can sort those out, but …

There’s a voice in my head keeps telling me that there’s a better way to do this. Having to manually figure out where to insert a new ItemView seems really hacky–shouldn’t the collection view know how to rerender the collection already?

Any suggestions?

  • 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-31T04:32:23+00:00Added an answer on May 31, 2026 at 4:32 am

    The usual way I’m doing is let the ListView render each ItemView in its render function. Then I just bind the add event to the render function, like this:

    ListView = Backbone.View.extend({
      el: '#list-rows'
      , initialize: function () {
        _.bindAll(this);
        this.collection = new Items();
        this.collection.bind('add', this.render);
        this.render();
      }
      , render: function () {
        this.$el.empty();
        var self = this;
        this.collection.each(function(item) {
          self.$el.append(new ItemView({ model: item }).render().el);
        });
        return this;
      }
    }
    

    Everytime you call this.collection.add(someModel, {at: index}), the view will be re-rendered accordingly.

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

Sidebar

Related Questions

Is there a way to suppress model validation in Backbone.js when a new model
When writing a new jQuery plugin is there a straightforward way of checking that
Is there a straightforward way to get the index of an item I just
Is there a straightforward way to run mysql_query with an insert and get the
Is there a straightforward way to create a string by adding new text as
Is there a straightforward way to turn the functions of a .RData file into
Is there a straightforward way to query a web service to see which messages
Is there a straightforward way using reflection to get at the parameter list for
Is there any straightforward way to get the mantissa and exponent from a double
Is there a straightforward way to coach TMail to make the body encoded with

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.