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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T11:03:55+00:00 2026-05-19T11:03:55+00:00

I am trying to load grid data from a ExtDirect router. The results contain

  • 0

I am trying to load grid data from a ExtDirect router. The results contain a metaData object that should reconfigure the store’s fields. I am getting the following error however when I try to load my data:

Uncaught TypeError: Cannot read property 'sortType' of undefined (ext-all-debug.js:23943)

The JSON result is:

{
    "action": "Dashboard",
    "method": "dashboarddata",
    "type": "rpc",
    "result": {
        "success": true,
        "metaData": {
            "sortInfo": {
                "direction": "ASC",
                "field": "id"
            },
            "fields": [{
                "mapping": "id",
                "id": "id"
            },
            {
                "mapping": "owner",
                "id": "owner"
            },
            {
                "mapping": "name",
                "id": "name"
            },
            {
                "mapping": "type",
                "id": "type"
            },
            {
                "mapping": "strategy",
                "id": "strategy"
            },
            {
                "mapping": "primebroker",
                "id": "primebroker"
            },
            {
                "mapping": "startdate",
                "id": "startdate"
            },
            {
                "mapping": "date_afc_prelim_approval",
                "id": "date_afc_prelim_approval"
            },
            {
                "mapping": "date_afc_approval",
                "id": "date_afc_approval"
            },
            {
                "mapping": "date_submit_regulator",
                "id": "date_submit_regulator"
            },
            {
                "mapping": "date_approval_regulator",
                "id": "date_approval_regulator"
            },
            {
                "mapping": "enddate",
                "id": "enddate"
            },
            {
                "mapping": "main_iso_currency",
                "id": "main_iso_currency"
            },
            {
                "mapping": "nav_frequency",
                "id": "nav_frequency"
            },
            {
                "mapping": "date_first_nav",
                "id": "date_first_nav"
            },
            {
                "mapping": "launch_size",
                "id": "launch_size"
            },
            {
                "mapping": "target_size",
                "id": "target_size"
            },
            {
                "mapping": "memo",
                "id": "memo"
            },
            {
                "mapping": "isin_codes",
                "id": "isin_codes"
            },
            {
                "mapping": "status",
                "id": "status"
            }],
            "totalProperty": "total",
            "successProperty": "success",
            "idProperty": "id",
            "root": "data"
        },
        "data": [{
            "status": "Project closed",
            "strategy": "Strategy X",
            "date_afc_approval": "2010-01-01",
            "startdate": "2010-01-01",
            "nav_frequency": "Bi-monthly",
            "date_first_nav": "2010-01-01",
            "enddate": "2010-01-01",
            "date_approval_regulator": "2010-01-01",
            "id": "1",
            "date_afc_prelim_approval": "2010-01-01",
            "isin_codes": "123",
            "target_size": "2000",
            "owner": "Some name",
            "name": "First project",
            "memo": "TEXTEXTEXT",
            "main_iso_currency": "TND",
            "primebroker": "Yes",
            "date_submit_regulator": "2010-01-01",
            "launch_size": "1000",
            "type": "TypeX"
        }],
        "total": 1
    },
    "tid": 6
}

The store itself is configured like:

var store = new Ext.data.DirectStore({
        idProperty: 'id'
        ,paramsAsHash: true
        ,directFn: MyApp.Direct.Dashboard.dashboarddata
        ,root:'data'
        ,autoLoad: false
        ,totalProperty:'total'
        ,fields: [
            {name: 'id', mapping: 'id'},
            {name: 'type', mapping: 'type'}
        ]
        ,baseParams: {
            type: this.type,
            filters: this.filters
        }
    });

Can anyone please help me? This is driving me nuts, I cannot see what I am doing wrong.

Thanks!

Rob

PS. I am using ExtJS 3.3.0

  • 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-19T11:03:56+00:00Added an answer on May 19, 2026 at 11:03 am

    I fixed it. Debugging did the trick.

    Apparently when updating the fields through the metaData object in the JSON response you need to name the fields. ExtJS uses the name field as a lookup field internally. Strange thing is that with static configuration of a store’s fields you don’t need that field…

    ...
    "fields": [{
                    "mapping": "id",
                    "name": "id",
                    "id": "id"
                },
                {
                    "mapping": "owner",
                    "name": "owner",
                    "id": "owner"
                },
                ...
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to load a jqGrid from json data made via a REST call.
I am trying to implement Ext.ux.grid.filter.ListFilter using a data store (rather than a hardcoded
i am trying to load images from the northwind database (categories table, images that
I am trying to re-load data into the Store which is further used by
I'm trying to load data from the jsp response which is a JSON using
I'm trying to read grid values from within a load event of my form.
I have a grid that I'm trying to populate from an XmlStore, which is
I'm trying to load nested JSONData into my tree grid. On the first call
i m trying load UIImages from server asynchronously in UITableViewCell. My code worked fine
Trying to load a small .txt file into mysql but get all my data

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.