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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T06:35:09+00:00 2026-05-27T06:35:09+00:00

In the documentation, i have found a store instantiated like this: var store =

  • 0

In the documentation, i have found a store instantiated like this:

var store = Ext.create('Ext.data.Store', {
    autoLoad: true,
    model: "User",
    proxy: {
        type: 'ajax',
        url : 'users.json',
        reader: {
            type: 'json',
            root: 'users'
        }
    }
});

The proxy has one url config. I am particularly interested in the reader. The reader specifies the data exchange format (json) and the root (‘users’). Now, in other words if the store is set up to be: autoLoad = true, then EXT JS will make an Ajax connection to the url specified in order to read. Now, how would i configure a writer for that same store above? Someone also tell me about this: if i configure a writer, would it use the same url as specified in the proxy? am still confused about writers and readers in context of the code i have showed above, you would help me use the above example to show readers and writer configs. Thank you.

  • 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-27T06:35:09+00:00Added an answer on May 27, 2026 at 6:35 am

    Here is an example of a store with reader, writer and api in my App:

    Ext.define('MyApp.store.Tasks', {
        extend: 'Ext.data.Store',
        model: 'MyApp.model.Task',
        sorters : [{
           property: 'idx',
           direction: 'ASC'
        }],
        autoSync:true,
        proxy:{
            type: 'ajax',
            reader: {
                type: 'json',
                root: 'data'
            },
            writer: {
                type: 'json',
                writeAllFields : false,  //just send changed fields
                allowSingle :false      //always wrap in an array
               // nameProperty: 'mapping'
           },
            api: {
                   // read:
                    create: 'task/bulkCreate.json',
                    update: 'task/bulkUpdate.json'
                   // destroy:
            }
        },
        listeners : {
            write: function(store, operation, opts){
                console.log('wrote!');
                //workaround to sync up store records with just completed operation
                Ext.each(operation.records, function(record){
                    if (record.dirty) {
                        record.commit();
                    }
                });
            },
            update:function(){
                console.log('tasks store updated');
            }
        }
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've searched the iPhone documentation and on google but have not found any information
After a review of the iPhone SDK documentation, I have not yet found a
Using the Python Documentation I found the HTML parser but I have no idea
I have some documentation written in OpenOffice, and I would like to include some
I have to submit subscription data to another website. I have got documentation on
I would like to create a custom version of the sortable widget. I have
I have a bunch of static Strings that I'd like to store in a
I have a simple hierarchic model whit a Person and RunningScore as child. this
I would like to store log4net config data in my application.config file. Based on
How do I create some simple ajax rating like there is on this page

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.