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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T08:42:19+00:00 2026-06-01T08:42:19+00:00

I am using a technique I read about from Sam Breed for using Deferreds

  • 0

I am using a technique I read about from Sam Breed for using Deferreds inside of Backbone.

Inside my initialize method of my Backbone View I have the following:

var me = this;

this.deferredTemplate = $.ajax({
    url: 'details/welcomeMaster.htm'
}).done(function (data) {
    me.template = data;
});

This will load a template file for me that is located externally to my View.

Then when I need it here is the code to new it up.

var something = new Dashboard.Views.WelcomeMasterView({
        collection: me.collection,
        el: $('.contentContainer')
});

something.deferredTemplate.done(function (data) {
        something.render();
});

Unfortunately I have to break up those 2 statements so that something is my Backbone View and not the jqXHR object. Other than that this code works just fine.

Question
Any ideas on how to chain together the 2 calls above? Inside the .done() method I need the Backbone View object.

  • 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-01T08:42:20+00:00Added an answer on June 1, 2026 at 8:42 am

    I think if you want to keep it simple you might prefer to first load the templates, then construct any views once you have fetched them. This is say how things work with AMD loaders providing the same thing.

    Otherwise, one idea would be to add a _render that would do what your render normally does, say

    _render: function () {
        this.$el.html(this.template(this.model.toJSON()));
    },
    

    Then, your normal render would call _render when ready:

    render: function () {
        this.deferredTemplate.done(this._render);
        return this;  
    },
    

    This would keep things simple and you can go on calling render() the same way you always do. Note however the drawback: If you rely on having actually rendered after a call to render (say for instance you manipulate the $el somewhere else), you might not actually have the element there.

    As a side note, while deferreds are a perfect fit for Backbone, their usage in the blog post you link to is unnecessary. A simple bind to change would have accomplished the same task in a cleaner way.

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

Sidebar

Related Questions

ih ave read about the technique to allow dynamic HTML stylesheets using PHP's preprocessor,
Is anyone using the techniques from Domain Driven Design? I've recently read the Eric
I have read about executing asynchronous operations and i found that it can be
I have read a bit about ADO.NET Entity Framework, but there is some things
After all what I have read about Dependency Injection and IoC I have decided
I used to use ERB templates everywhere using the following technique: def create_from_template(file, template,
Using a technique I found in one of the recent ASP.NET MVC books, I
I am using this technique: is there a way to hold the values? -
I've been using this technique for over a year, but I haven't seen it
I'm looking for a technique using JQuery to remove an html tag (both opening

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.