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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T15:35:46+00:00 2026-06-18T15:35:46+00:00

I have a Route for creating new documents, making a copy of an existing

  • 0

I have a Route for creating new documents, making a copy of an existing document.

App.DocumentsNewRoute = Ember.Route.extend({
  model: function (params) {
    this.modelParams = params; // save params for reference
    return App.Document.createRecord();
  },
  setupController: function (controller, model) {
    // use the params to get our reference document
    var documentModel = App.Document.find(this.modelParams.document_id);

    documentModel.one('didLoad', function () {
      // once loaded, make a serialized copy
      var documentObj = documentModel.serialize();

      // and set the properties to our empty record
      model.setProperties(documentObj);

      console.log('didLoad');
    });
  }
});

I added some logs in my View.

App.DocumentView = Ember.View.extend({
  init: function () {
    this._super();
    // fires before the didLoad in the router
    console.log('init view');
  },
  willInsertElement: function () {
    // fires before the didLoad in the router
    console.log('insert elem');
  }
});

And this is my template

{{#if model.isLoaded }}
  {{ view App.DocumentView templateNameBinding="model.slug" class="document portrait" }}
{{ else }}
  Loading...
{{/if}}

The problem it seems is that my model isLoaded, but not populated when my template is rendered, so the templateNameBinding doesn’t exist at this point, and doesn’t seem to be updated when the data gets populated.

Should I use something else than model.isLoaded in my template, or should I force a re-render of my template, and if so, how and where? Thanks!

  • 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-18T15:35:48+00:00Added an answer on June 18, 2026 at 3:35 pm

    It seem that you are overcomplicating the things. It should be:

    EDIT

    I misunderstood your question in first read, so

    App.DocumentsNewRoute = Ember.Route.extend({
        model: function (params) {
            var originalDoc = App.Document.find(params.document_id),
            newDoc = App.Document.createRecord();
            originalDoc.one('didLoad', function () {
                 newDoc.setProperties(this.serialize());
            });
            return newDoc;
        },
        setupController: function (controller, model) {
            controller.set('content', model);
        }
    });
    

    If everything is right, ember will re-render things automatically..

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

Sidebar

Related Questions

I'm using Expressjs w/ node.js and I have a route like this: users.init(app.db, function()
I have a form used for creating a new record of the model Message.
I have a route: routes.MapRoute(ResetPasswordConfirm, reset-password-confirm, new { controller = Membership, action = ResetPasswordConfirm
I have a route: routes.MapRoute( Company, {id}/{name}.aspx, new { controller = Company, action =
I am working on creating a new controller/route to only allow an HTTP GET
I have the following route : @resource 'groups', {path: 'events/:event_id/groups'}, -> @route 'new' In
I have the default Route in Global.asax: RouteTable.Routes.MapHttpRoute( name: DefaultApi, routeTemplate: api/{controller}/{id}, defaults: new
I have been trying to use routes.rb for creating a URL /similar-to-:product (where product
I have a route like following, ideally I would like it to match: domain.com/layout/1-slug-is-the-name-of-the-page
I have a route which routes a request to somepath/:id(.:format) to somecontroller#show . This

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.