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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T05:35:30+00:00 2026-06-17T05:35:30+00:00

here is my scenario of backbone view var TreeNode = Backbone.View.extend({ tagName : span,

  • 0

here is my scenario of backbone view

var TreeNode = Backbone.View.extend({
        tagName : "span",
        className : "ndelem dirnode",
        events : {
            "click" : "selectNode",
        },
        initialize : function() {
            _.bindAll(this, "render", "selectNode");
            $(this.el).append(this.model.get("fname")).attr({
                "data-cid" : this.model.cid
            });

        },
        render : function() {
            this.delegateEvents();
            return this;
        },

        selectNode : function(e) {
            e.stopPropagation();

            this.model.set({
                isOpened : true
            });
        }
    });

Main view

var TreeZone = Backbone.View.extend({
        el : $("#nodes"),
        initialize : function() {
            this.collection.bind("add", this.list, this);
        },      
        getHtml : function(elem) {
            var newItem = $("<div/>").append(elem);
            return newItem.html();
            newItem.remove();
        },
        getSelectedItem : function() {
            var selectedItem = $('#nodes').jqxTree('selectedItem');
            if (selectedItem != null)
                return selectedItem.element;
            else {
                var treeItems = $('#nodes').jqxTree('getItems');
                var firstItem = treeItems[0];
                return firstItem.element;
            }
        },
        list : function(file) {

            var node = new TreeNode({
                model : file
            });
            var newItem = this.getHtml(node.render().el);

            var element = this.getSelectedItem();

            $('#nodes').jqxTree('addTo', {
                html : newItem,
            }, element);
            $('#nodes').jqxTree('expandItem', element); 
        }
    });

var tree = new TreeZone({collection:dircollection});

I adding elements to the collection.

but tree node click event not firing. simply I am adding raw html to the tree node because tree doesnt support jquery object. so I am trying get html from get html function. and giving it to tree.

  • 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-06-17T05:35:34+00:00Added an answer on June 17, 2026 at 5:35 am

    Events are bound to DOM elements but you end up working with HTML strings. You’re doing this:

    getHtml : function(elem) {
        var newItem = $("<div/>").append(elem);
        return newItem.html();
        newItem.remove();
    },
    
    //...
    var newItem = this.getHtml(node.render().el);
    

    So getHTML returns a string and as soon as you convert your TreeNode‘s el (which is a DOM object) to a string, the delegate which Back attaches to el for event handling is gone: no delegate, no events.

    I can see a couple options:

    1. Dig the node’s <span> out of #nodes after the addTo call and use setElement to re-attach it to the TreeNode view.
    2. Rearrange the structure so that you don’t have TreeNode at all. If you attach a class to the node <span>s then you could let TreeZone deal with all the events; for example, if you used <span class="node"> for the nodes, then TreeZone could have this:

      events: {
          'click .node': 'selectNode'
      }
      

      And you’d have a selectNode method on TreeZone instead of TreeNode. You might need to add a data-id attribute to the <span>s so that you can backtrack from the <span> to the model.

    Also, note that your newItem.remove(); in getHtml will never be executed.

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

Sidebar

Related Questions

I am using backbone.js here is my scenario Lets say I have a view
Here's the scenario. When a user's login info is submitted, activityIndicator view is shown.
Here the scenario : A method is called each minute by a timer. This
I know how to write tab host,but here the scenario is little bit different
Here is the scenario. I'm writing my geo-ruby oracle adapter for Ruby On Rails
Here's the scenario: In production, I want to send and receive sms messages. In
Here's the scenario. As a creator of publicly licensed, open source APIs, my group
Here is my scenario: I have two MySQL tables: Categories (columns: id, category) Items
Here's the scenario: I have a public repo A . Bob forks A ,
Here is my scenario: <div class=item> <div class=item-title> <a href=_files/download_item.zip class=link>Download 1</a> </div> <div

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.