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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T07:51:18+00:00 2026-06-14T07:51:18+00:00

I have a wep app that uses both knockout.js and require.js libraries. Let’s say

  • 0

I have a wep app that uses both knockout.js and require.js libraries. Let’s say that I have a ‘User’ model and a ‘Customer’ model. I want the Customer model to inherit from User, so I now have the following code:

User.js

define(['knockout'], function(ko){

    return function User(){

        var self = this;
        self.id = ko.observable();
        self.firstname = ko.observable();
        self.name = ko.observable();
    };
});

Customer.js

define(['knockout', 'model/user'], function(ko, User){

    return function Customer(){

        var self = this;
        self.address = ko.observable();
    };
    Customer.prototype = new User();
});

When I create a Customer with the following code:

var c = new Customer();
c.id(1);
c.firstname("John");
c.name("Doe");
c.address("Unknown");

Then I get the following error in the Chrome console:

Uncaught TypeError: Object #<Customer> has no method 'id' 

When I set only the address property, I don’t see this error so I’m assuming that there is something wrong with the inheritance. Any help is very welcome.

  • 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-14T07:51:20+00:00Added an answer on June 14, 2026 at 7:51 am

    The following line will never be executed because you use return before:

    Customer.prototype = new User();
    

    Update customer.js to this:

    define(['knockout', 'model/user'], function(ko, User){
    
        function Customer (){
    
            var self = this;
            self.address = ko.observable();
        };
        Customer.prototype = new User();
        return Customer;
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am facing strange issue. I have wep-part that reads data from user's profile.
Have an app that can use tts to read text messages. It can also
have 2 questions : A computer with 32-bit address uses 2-level page table (9
Have 2 tables in Access 2007, both lists of certain tasks to be accomplished.
Have a SQL problem, adding this model all works correctly, the problem is in
Have such user_session model: class UserSession < Authlogic::Session::Base logout_on_timeout true # default if false
Have a simple form that has a PictureBox in one location. I want to
have been trying couple of hours now to make my iphone app universal. The
I'm investigating WEP and as part of that, I'm toying with the RC4 algorithm.
Have a network location that shows paths in the 8.3 short format. I need

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.