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

  • Home
  • SEARCH
  • 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 6212593
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T06:32:40+00:00 2026-05-24T06:32:40+00:00

I want to create TreePanel using ExtJS4. So I’m sending JSON to proxy reader

  • 0

I want to create TreePanel using ExtJS4. So I’m sending JSON to proxy reader which has following format

{
    "text": "en",
    "children": {
        "text": "/",
        "children": [{
                "text": "/page",
                "children": [{
                        "text": "/page/new",
                        "children": [],
                        "leaf": true,
                        "expanded": false
                    },
                    {
                        "text": "/page/remove",
                        "children": [],
                        "leaf": true,
                        "expanded": false
                    }
                ],
                "leaf": false,
                "expanded": false
            },
            {
                "text": "/home",
                "children": [],
                "leaf": true,
                "expanded": false
            }
        ],
        "leaf": false,
        "expanded": true
    }
}

How do I have to configure my Store if I want en node to be my root node.

Ext.define('Example.store.WebItems', {
    extend: 'Ext.data.TreeStore',

    model: 'Example.model.Item',

    proxy: {
        type: 'ajax',
        api: {
            read: 'some/url',
        },
        reader: {
            type: 'json',
            root: 'children' // Is this correct?
        }
    },
    root: // What should I write here?
});

When I define TreeStore‘s root as root: 'My Root' it will add new root, but I want to use root defined in JSON.

So my questions are:

  1. How to use root node from JSON instead of defining it manualy?
  2. Do I have to define root node in proxy reader and TreeStore as well?
  • 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-24T06:32:40+00:00Added an answer on May 24, 2026 at 6:32 am

    Response has to have root.

    For example:

    {
         MyRoot: {
             "text": "en",
             "children": {
                 "text": "/",
                 "children": [{
                     "text": "/page",
                     "children": [{
                         "text": "/page/new",
                         "children": [],
                         "leaf": true,
                         "expanded": false
                     }, {
                         "text": "/page/remove",
                         "children": [],
                         "leaf": true,
                         "expanded": false
                     }],
                     "leaf": false,
                     "expanded": false
                 }, {
                     "text": "/home",
                     "children": [],
                     "leaf": true,
                     "expanded": false
                 }],
                 "leaf": false,
                 "expanded": true
             }
         }
     }
    

    In this example root is MyRoot. Now you have to “tell” reader that your root is MyRoot:

            // ...
            reader: {
                type: 'json',
                root: 'MyRoot'
            }
        },
        //root: this config is not needed now
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to create an allocator which provides memory with the following attributes: cannot
I want create a pdf using iText. The method which does this is a
I am using jQuery 1.4. I want create the timer which starts on keyup
i want create image animation , i have 50 images with png format now
I want to create a Java application bundle for Mac without using Mac. According
I want to create a simple http proxy server that does some very basic
I want create a generic (general) method which accepts the return types of LINQ
I want create some view, and add dynamically to it text and images Somebody
I want to create Ext.tree.TreePanel component and periodically load content from the external URl.
I want create a DataSet class which is basically a list of samples. But

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.