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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T19:39:48+00:00 2026-06-03T19:39:48+00:00

The Git Ropo for full code I have defined: /app/model/Todo: Ext.define(‘Test.model.Todo’, { extend: ‘Ext.data.Model’,

  • 0

The Git Ropo for full code

I have defined:

/app/model/Todo:

Ext.define('Test.model.Todo', {
    extend: 'Ext.data.Model',
    config: {
        fields: [
            { name: 'title', type: 'string' },
            { name: 'priority', type: 'integer', defaultValue: 0 },
            { name: 'done', type: 'boolean' }
        ]
    }
});

/app/store/TodoStore

Ext.define('Test.store.TodoStore', {
    extend: 'Ext.data.Store',
    requires: [ 'Test.model.Todo' ],
    config: {
        model: 'Test.model.Todo',
        data: [
            { title: 'Todo Item 1', priority: 0, done: false },
            { title: 'Todo Item 2', priority: 0, done: false },
            { title: 'Todo Item 3', priority: 0, done: false },
            { title: 'Todo Item 4', priority: 0, done: false },
            { title: 'Todo Item 5', priority: 0, done: false },
            { title: 'Todo Item 6', priority: 0, done: false }
        ]
    }
});

Now, if I just use store: 'TodoStore' in a list, I get

[WARN][Ext.dataview.List#applyStore] The specified Store cannot be found

So I added too app.js

Ext.application({
    name: 'Test',
    ...
    stores: [ 'TodoStore' ],

The warning goes away, but I still have a blank list. Am I missing something?


Old Post below

Ext.define("SimpleTodo.view.Main", {
    extend: 'Ext.Panel',
    requires: [ 'Ext.TitleBar', 'Ext.dataview.List' ],
    config: {
        styleHtmlContent: true,
        items: [
            ...
            {
                xtype: 'list',
                itemTpl: '{name}',
                store: {
                    fields: ['name'],
                    data: [
                        { name: 'Todo 1' },
                        { name: 'Todo 2' },
                        { name: 'Todo 3' },
                        { name: 'Todo 4' },
                        { name: 'Todo 5' },
                        { name: 'Todo 6' }
                    ]
                }

            }
        ]
    }
});

Getting:

Expecting a function in instanceof check, but got #<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-03T19:39:50+00:00Added an answer on June 3, 2026 at 7:39 pm

    It’s because Sencha Touch does not understand the way you’ve defined your store.

    You should do something like this, which consists of 3 steps:

    Defining model

    Ext.define('SimpleTodo.model.listitem',{
        extend: 'Ext.data.Model',
        config: {
            fields: [
                {name: 'name', type: 'string'},
            ],
        }
    })
    

    Defining store:

    Ext.define('SimpleTodo.store.listitems', {
        extend: 'Ext.data.Store',
    
        config: {
            model: 'SimpleTodo.model.listitem',
            data: [
                 { name: 'Todo 1' },
                            { name: 'Todo 2' },
                            { name: 'Todo 3' },
                            { name: 'Todo 4' },
                            { name: 'Todo 5' },
                            { name: 'Todo 6' }
            ],
        }
    });
    

    finally, in your list:

    store: 'listitems'
    

    Hope this helps.

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

Sidebar

Related Questions

git log lists all commits, from all branches that have been merged into HEAD.
git diff --quiet returns exit code as documented. git log --quiet behaves exactly as
git commit giving me the following message * * You have some suspicious patch
git version 1.7.7 I have dropbox git repository. From my works computer karl-sun I
git version 1.7.4.1 I am using git on Ubuntu. I have copied some files
Git, Mercurial, and Bazaar all seem to have similar formats for their ignore file
git version 1.7.3.5 I have the following branches: git branch image master * video
git branch -d is almost always wrong about if a branch has code I
Installed Git and created heroku account for use with a facebook app unable to
After git pull I have done git reset hard to undo the merge with

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.