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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T08:19:24+00:00 2026-05-23T08:19:24+00:00

i have a big problem setting up an associated store/model concept. I have the

  • 0

i have a big problem setting up an associated store/model concept.

I have the models/store

app.models.User = Ext.regModel('app.models.User', {
    fields: [
        {name: 'id',         type: 'int'},
        {name: 'userID',    type: 'string'},
        {name: 'userName',  type: 'string'}
    ],

    associations: [
        {type: 'hasMany', model: 'app.models.Friend', name:'friends', associationKey:'friends'},
    ]
});

app.models.UserFriendsList = Ext.regModel('app.models.UserFriendsList', {
    fields: [
        {name: 'id',         type: 'int'},
        {name: 'userID',     type: 'string'},
        {name: 'userName',  type: 'string'}
    ],

    belongsTo: 'app.models.User',

    associations: [
        {type: 'hasMany', model: 'app.models.Friend',    name: 'friend'}
    ]
});

app.models.Friend = Ext.regModel('app.models.Friend', {
    fields: [
        {name: 'id',         type: 'int'},
        {name: 'userID',    type: 'string'},
        {name: 'userName',  type: 'string'}
    ],
   belongsTo: 'app.models.UserFriendsList',
});

app.stores.userStore = new Ext.data.Store({

    model: 'app.models.User',

    data:[
        {
            "id":                 "01", 
            "userName":         "Username"

            "friends": [
                {    "id":                 "02", 
                    "userName":         "Friend 1"
                },
                {    "id":                 "03", 
                    "userName":         "Friend 2"
                },
            ]

        }
    ]
}); 

I then use

var currentUser = app.stores.User.getAt(0); 
console.log(currentUser);
var friends = currentUser.friends().getAt(0);
console.log(friends); 

to trace some debug information about the currently loaded user.

When I use the ‘associationKey’-parameter without the ‘name’-parameter the trace shows that the data is fetched correctly into the data-part of the traced object ‘currentUser’. But there is no function friends() to use. I only get the error

TypeError: Result of expression 'currentUser.friends' [undefined] is not a function.

When I use the ‘name’-parameter without the ‘associationKey’-parameter (or both parameters) the instance function friends() is created but no data is fetched into the object so I can’t use it.

What is wrong with my code? Or where is my misunderstanding of concept?

THNX!!!

EDIT: please have a look into my files: http://www.box.net/shared/n4h3rdp1499ihx990v3h

  • 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-23T08:19:24+00:00Added an answer on May 23, 2026 at 8:19 am

    Looks like you have a few problems with your model declarations and has many associations.

    First, your model names should be just simple statements, not doted fully qualified objects. It makes the declarations easier.

    app.models.User = Ext.regModel('app.models.User', {
    

    Should be:

    app.models.User = Ext.regModel('User', {
    

    Second, you need to have fields that relate the ids to each other properly named.

    app.models.Friend = Ext.regModel('Friend', {
    fields: [
        {name: 'user_id', type: 'int'},
        .....
    ],
    

    Now that your model is named User, and your Friend model references user_id, Sencha Touch will automatically use the association properly.

    Third, you need to fix your Association declaration. You added the property associationKey to the association. Which doesn’t exist in the docs and the model should be just ‘Friend’ after the first point that I mentioned.

    associations: [
        {type: 'hasMany', 
         model: 'Friend', 
         name:'friends', 
        },
    ]
    

    Fourth, to get the friends you need to perform a load on the store. currentUser.friends().load().getAt(0);

    You can get fancy and declare different foriegn keys as different names but at this point I would just get the basic example up and working.

    Sencha has a good tutorial about getting started with associations and validations.

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

Sidebar

Related Questions

I have big problem when I am trying to deploy my app over clickonce.
i have a problem..my tabs name show too big i want it shows as
I have a big problem. I want to extract text from html table that
I have a (big) problem that all of you that work with Webforms might
I have a big problem dealing with data I try to download in my
I have an big problem with an SQL Statement in Oracle. I want to
I am using gettext in my PHP code, but I have a big problem.
I have a very big problem. I am making a CRM (Costumer Relationship Management)
I am in a big problem ..i have compiled my c files using linux
i have a big Joomla 1.5 Problem. I'll create my own Gallery Component/PlugIn and

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.